summaryrefslogtreecommitdiff
path: root/src/SMAPI/Program.cs
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2020-01-26 20:45:27 -0500
committerGitHub <noreply@github.com>2020-01-26 20:45:27 -0500
commit7cbf298bd42606b41386f117566c79732f88cccf (patch)
treeb474fe278501ff8f24c5bb6534005077b75f45e6 /src/SMAPI/Program.cs
parenta96bfea205ab855913726cad58d63191fbf24399 (diff)
parent860b30443ec47ceb271a008c26f3b358cf7bb409 (diff)
downloadSMAPI-7cbf298bd42606b41386f117566c79732f88cccf.tar.gz
SMAPI-7cbf298bd42606b41386f117566c79732f88cccf.tar.bz2
SMAPI-7cbf298bd42606b41386f117566c79732f88cccf.zip
Merge pull request #690 from Drachenkaetzchen/performance-counter
Performance counters
Diffstat (limited to 'src/SMAPI/Program.cs')
-rw-r--r--src/SMAPI/Program.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/SMAPI/Program.cs b/src/SMAPI/Program.cs
index 6bacf564..c26ae29a 100644
--- a/src/SMAPI/Program.cs
+++ b/src/SMAPI/Program.cs
@@ -11,6 +11,7 @@ using StardewModdingAPI.Framework;
using StardewModdingAPI.Toolkit.Utilities;
[assembly: InternalsVisibleTo("SMAPI.Tests")]
+[assembly: InternalsVisibleTo("ConsoleCommands")] // for performance monitoring commands
[assembly: InternalsVisibleTo("DynamicProxyGenAssembly2")] // Moq for unit testing
namespace StardewModdingAPI
{