diff options
author | Jose <pepone@users.noreply.github.com> | 2020-11-18 14:35:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-18 14:35:45 +0100 |
commit | 61f46a49e07d422bfb5ca7b32234b9ad1405fa07 (patch) | |
tree | 27b9db4b875d757dc3b51fa16b72decea248cb9f /csharp/test/Ice/plugin/Client.cs | |
parent | Fixed invalid Python 3.9 macro (diff) | |
download | ice-61f46a49e07d422bfb5ca7b32234b9ad1405fa07.tar.bz2 ice-61f46a49e07d422bfb5ca7b32234b9ad1405fa07.tar.xz ice-61f46a49e07d422bfb5ca7b32234b9ad1405fa07.zip |
Add .NET 5.0 support (#1154)
Diffstat (limited to 'csharp/test/Ice/plugin/Client.cs')
-rw-r--r-- | csharp/test/Ice/plugin/Client.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/csharp/test/Ice/plugin/Client.cs b/csharp/test/Ice/plugin/Client.cs index d3165dadb0c..cef8593555b 100644 --- a/csharp/test/Ice/plugin/Client.cs +++ b/csharp/test/Ice/plugin/Client.cs @@ -23,6 +23,8 @@ public class Client : Test.TestHelper { #if NET45 string pluginPath = "msbuild/plugin/net45/Plugin.dll"; +#elif NET5_0 + string pluginPath = "msbuild/plugin/net5.0/Plugin.dll"; #else string pluginPath = String.Format("msbuild/plugin/netstandard2.0/{0}/Plugin.dll", |