Skip to content

Commit ffd81dc

Browse files
authored
[Perf] Simplify Template.Perf Program.cs (Azure#19124)
1 parent bf77cd8 commit ffd81dc

File tree

1 file changed

+2
-11
lines changed

1 file changed

+2
-11
lines changed
Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,7 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
22
// Licensed under the MIT License.
33

4-
using System.Threading.Tasks;
4+
using System.Reflection;
55
using Azure.Test.Perf;
66

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-
}
7+
await PerfProgram.Main(Assembly.GetEntryAssembly(), args);

0 commit comments

Comments
 (0)