diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-08-22 21:47:37 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-08-22 21:47:37 -0400 |
commit | cb37644291012a8f4797e009bf0fdcb3ab51845f (patch) | |
tree | 2ea9f5920bd435dd769761ed5138a2af6024c671 /src/SMAPI/Properties | |
parent | 58fd6c71a2f9ad92879b04554b7443584eb7a267 (diff) | |
download | SMAPI-cb37644291012a8f4797e009bf0fdcb3ab51845f.tar.gz SMAPI-cb37644291012a8f4797e009bf0fdcb3ab51845f.tar.bz2 SMAPI-cb37644291012a8f4797e009bf0fdcb3ab51845f.zip |
move assembly attributes to match convention
Diffstat (limited to 'src/SMAPI/Properties')
-rw-r--r-- | src/SMAPI/Properties/AssemblyInfo.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/SMAPI/Properties/AssemblyInfo.cs b/src/SMAPI/Properties/AssemblyInfo.cs new file mode 100644 index 00000000..f8f7f4ea --- /dev/null +++ b/src/SMAPI/Properties/AssemblyInfo.cs @@ -0,0 +1,5 @@ +using System.Runtime.CompilerServices; + +[assembly: InternalsVisibleTo("SMAPI.Tests")] +[assembly: InternalsVisibleTo("ConsoleCommands")] // for performance monitoring commands +[assembly: InternalsVisibleTo("DynamicProxyGenAssembly2")] // Moq for unit testing |