forked from dotnet/crank
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMicrosoft.Crank.Agent.csproj
31 lines (26 loc) · 1.1 KB
/
Microsoft.Crank.Agent.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<Description>The benchmarking agent</Description>
<TargetFramework>netcoreapp3.1</TargetFramework>
<OutputType>Exe</OutputType>
<Authors>Microsoft</Authors>
<PackAsTool>true</PackAsTool>
<IsPackable>true</IsPackable>
<AssemblyName>crank-agent</AssemblyName>
<ToolCommandName>crank-agent</ToolCommandName>
<PackageId>Microsoft.Crank.Agent</PackageId>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="applicationHost.config" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.4" />
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="3.0.0" />
<PackageReference Include="Microsoft.Diagnostics.Tracing.TraceEvent" Version="2.0.55" />
<PackageReference Include="Mono.Posix.NETStandard" Version="1.0.0" />
<PackageReference Include="NuGet.Versioning" Version="5.5.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Microsoft.Crank.Models\Microsoft.Crank.Models.csproj" />
</ItemGroup>
</Project>