-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path_5BackupsExtra.csproj
More file actions
36 lines (30 loc) · 1.19 KB
/
Copy path_5BackupsExtra.csproj
File metadata and controls
36 lines (30 loc) · 1.19 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
<RootNamespace>BackupsExtra</RootNamespace>
<PackageVersion>1.0.0-pre</PackageVersion>
</PropertyGroup>
<ItemGroup>
<EditorConfigFiles Remove="..\.editorconfig" />
</ItemGroup>
<ItemGroup>
<None Include="..\.editorconfig" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="NUnit" Version="3.12.0" />
<PackageReference Include="Serilog" Version="2.11.0-dev-01377" />
<PackageReference Include="Serilog.Sinks.Console" Version="4.0.1" />
<PackageReference Include="Serilog.Sinks.RollingFile" Version="3.3.1-dev-00771" />
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\_3Backups\_3Backups.csproj" />
</ItemGroup>
</Project>