-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAlertProxy.csproj
43 lines (36 loc) · 1.4 KB
/
AlertProxy.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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<UserSecretsId>9458c850-991e-4c14-bd8a-1b48a4656b01</UserSecretsId>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
<DockerfileContext>.</DockerfileContext>
</PropertyGroup>
<ItemGroup>
<None Remove="cfg\settings.json.example" />
</ItemGroup>
<ItemGroup>
<Content Include="cfg\settings.json.example">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.10.9" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="Serilog.AspNetCore" Version="3.4.0" />
<PackageReference Include="Stubble.Extensions.JsonNet" Version="1.2.3" />
</ItemGroup>
<ItemGroup>
<Content Update="cfg\serilog.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Update="cfg\settings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Update="cfg\targets.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Update="cfg\users.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>