-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathSampleA2aService.csproj
More file actions
34 lines (28 loc) · 1.04 KB
/
SampleA2aService.csproj
File metadata and controls
34 lines (28 loc) · 1.04 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<None Remove="certs\test-ca.crt" />
<None Remove="certs\test.full.pfx" />
</ItemGroup>
<ItemGroup>
<Content Include="certs\test-ca.crt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="certs\test.full.pfx">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Serilog.Sinks.Console" Version="6.1.1" />
<PackageReference Include="Serilog.Sinks.File" Version="7.0.0" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="10.0.2" />
<PackageReference Include="Topshelf" Version="4.3.0" />
<PackageReference Include="Topshelf.Serilog" Version="4.3.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\SafeguardDotNet\SafeguardDotNet.csproj" />
</ItemGroup>
</Project>