We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf77cd8 commit ffd81dcCopy full SHA for ffd81dc
sdk/template/Azure.Template/perf/Program.cs
@@ -1,16 +1,7 @@
1
// Copyright (c) Microsoft Corporation. All rights reserved.
2
// Licensed under the MIT License.
3
4
-using System.Threading.Tasks;
+using System.Reflection;
5
using Azure.Test.Perf;
6
7
-namespace Azure.Template.Perf
8
-{
9
- public class Program
10
- {
11
- public static async Task Main(string[] args)
12
13
- await PerfProgram.Main(typeof(Program).Assembly, args);
14
- }
15
16
-}
+ await PerfProgram.Main(Assembly.GetEntryAssembly(), args);
0 commit comments