-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathInfostacker.csproj
More file actions
39 lines (34 loc) · 1.27 KB
/
Infostacker.csproj
File metadata and controls
39 lines (34 loc) · 1.27 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
35
36
37
38
39
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<Compile Remove="publish\**" />
<Compile Remove="_release\**" />
<Content Remove="publish\**" />
<Content Remove="_release\**" />
<EmbeddedResource Remove="publish\**" />
<EmbeddedResource Remove="_release\**" />
<None Remove="publish\**" />
<None Remove="_release\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Markdig" Version="1.0.0" />
<PackageReference Include="Serilog" Version="4.3.1" />
<PackageReference Include="Serilog.AspNetCore" Version="10.0.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="6.1.1" />
<PackageReference Include="Serilog.Sinks.File" Version="7.0.0" />
<PackageReference Include="Serilog.Sinks.Seq" Version="9.0.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="10.1.4" />
</ItemGroup>
<ItemGroup>
<None Update="template.html">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="templateScript.html">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>