-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathJsonLogApp.csproj
46 lines (37 loc) · 1.13 KB
/
JsonLogApp.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>disable</Nullable>
</PropertyGroup>
<ItemGroup>
<None Remove="readme.md" />
</ItemGroup>
<ItemGroup>
<Content Include="assets\csharp.ico" />
<Content Include="readme.md" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ConfigurationLibrary" Version="1.0.6" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ConsoleHelperLibrary" Version="1.0.2" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Spectre.Console" Version="0.46.0" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Serilog" Version="4.1.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" />
<!--<PackageReference Include="Spectre.Console" Version="0.44.0" />-->
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SeriLogLibrary\SeriLogLibrary.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>