-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathEXDTooler.csproj
More file actions
28 lines (23 loc) · 906 Bytes
/
EXDTooler.csproj
File metadata and controls
28 lines (23 loc) · 906 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PublishSingleFile>true</PublishSingleFile>
<PublishReadyToRun>true</PublishReadyToRun>
<SelfContained>true</SelfContained>
<DebugType>embedded</DebugType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DotMake.CommandLine" Version="1.8.8" />
<PackageReference Include="JsonSchema.Net" Version="7.3.3" />
<PackageReference Include="Lumina" Version="5.6.1" />
<PackageReference Include="MinHashSharp" Version="1.1.1" />
<PackageReference Include="Yaml2JsonNode" Version="2.2.0" />
<PackageReference Include="YamlDotNet" Version="16.3.0" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="schema.json" />
</ItemGroup>
</Project>