-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathfdata_dump.csproj
More file actions
35 lines (29 loc) · 964 Bytes
/
Copy pathfdata_dump.csproj
File metadata and controls
35 lines (29 loc) · 964 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<DefaultItemExcludes>$(DefaultItemExcludes);test/**</DefaultItemExcludes>
</PropertyGroup>
<ItemGroup>
<None Update="rdb_common.csv;rdb_extensions.csv;priority.txt;debug.txt;objdb.txt;kidstypeinfodb.yml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="CsvHelper" Version="30.0.1" />
<PackageReference Include="YamlDotNet" Version="9.1.4" />
</ItemGroup>
<ItemGroup>
<Folder Include="ref\" />
</ItemGroup>
<ItemGroup>
<Reference Include="lwio">
<HintPath>ref\lwio.dll</HintPath>
</Reference>
<Reference Include="p5spclib">
<HintPath>ref\p5spclib.dll</HintPath>
</Reference>
</ItemGroup>
</Project>