-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathMicrosoft.Crank.Agent.csproj
53 lines (46 loc) · 2.3 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<Description>The benchmarking agent</Description>
<TargetFrameworks>net8.0</TargetFrameworks>
<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>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="applicationHost.config" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Azure.Identity" />
<PackageReference Include="McMaster.Extensions.CommandLineUtils" />
<PackageReference Include="Microsoft.AspNetCore.Hosting.WindowsServices" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" />
<PackageReference Include="Microsoft.Azure.Relay" />
<PackageReference Include="Microsoft.Azure.Relay.AspNetCore" />
<PackageReference Include="Mono.Cecil" />
<PackageReference Include="Microsoft.Diagnostics.NETCore.Client" />
<PackageReference Include="Microsoft.Diagnostics.Tracing.TraceEvent" />
<PackageReference Include="Microsoft.Windows.CsWin32" PrivateAssets="all" />
<PackageReference Include="Mono.Unix" />
<PackageReference Include="NuGet.Versioning" />
<PackageReference Include="Serilog.Formatting.Compact" />
<PackageReference Include="Serilog.Sinks.Console" />
<PackageReference Include="Serilog.Sinks.File" />
<PackageReference Include="Serilog.AspNetCore" />
<PackageReference Include="System.Diagnostics.PerformanceCounter" />
<PackageReference Include="System.IO.Hashing" />
<!-- Forced versions for Component Governance compliance -->
<PackageReference Include="System.Text.Encodings.Web" />
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Microsoft.Crank.EventSources\Microsoft.Crank.EventSources.csproj" />
<ProjectReference Include="..\Microsoft.Crank.JobOjectWrapper\Microsoft.Crank.JobObjectWrapper.csproj" />
<ProjectReference Include="..\Microsoft.Crank.Models\Microsoft.Crank.Models.csproj" />
</ItemGroup>
</Project>