-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlib.remnant2.analyzer.csproj
43 lines (37 loc) · 1.39 KB
/
lib.remnant2.analyzer.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">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Title>Remnant 2 save analyzer library</Title>
<Description>Remnant 2 save analyzer library</Description>
<Copyright>© Andrew Savinykh 2023-2024</Copyright>
<PackageProjectUrl>https://github.com/AndrewSav/lib.remnant2.analyzer</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/AndrewSav/lib.remnant2.analyzer</RepositoryUrl>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
</PropertyGroup>
<ItemGroup>
<None Remove="db.json" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="db.json" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="lib.remnant2.saves" Version="0.0.18" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Serilog" Version="4.1.0" />
<PackageReference Include="SerilogTimings" Version="3.1.0" />
</ItemGroup>
<ItemGroup>
<None Update="LICENSE">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>