aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/csharp/Grpc.Tools.Tests/NUnitMain.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/csharp/Grpc.Tools.Tests/NUnitMain.cs')
-rw-r--r--src/csharp/Grpc.Tools.Tests/NUnitMain.cs14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/csharp/Grpc.Tools.Tests/NUnitMain.cs b/src/csharp/Grpc.Tools.Tests/NUnitMain.cs
index 5784cdeac2..418c33820e 100644
--- a/src/csharp/Grpc.Tools.Tests/NUnitMain.cs
+++ b/src/csharp/Grpc.Tools.Tests/NUnitMain.cs
@@ -19,13 +19,15 @@
using System.Reflection;
using NUnitLite;
-namespace Grpc.Tools.Tests {
- static class NUnitMain {
- public static int Main(string[] args) =>
+namespace Grpc.Tools.Tests
+{
+ static class NUnitMain
+ {
+ public static int Main(string[] args) =>
#if NETCOREAPP1_0 || NETCOREAPP1_1
- new AutoRun(typeof(NUnitMain).GetTypeInfo().Assembly).Execute(args);
+ new AutoRun(typeof(NUnitMain).GetTypeInfo().Assembly).Execute(args);
#else
- new AutoRun().Execute(args);
+ new AutoRun().Execute(args);
#endif
- };
+ };
}