-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathExtractor.csproj
24 lines (21 loc) · 967 Bytes
/
Extractor.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
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.8.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="Raid.Client" Version="2.3.9-alpha" />
</ItemGroup>
<PropertyGroup>
<TargetFramework>net5.0-windows</TargetFramework>
<OutputType>WinExe</OutputType>
<UseWindowsForms>true</UseWindowsForms>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>false</SelfContained>
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<ValidateExecutableReferencesMatchSelfContained>false</ValidateExecutableReferencesMatchSelfContained>
<AssemblyName>Raid.Extractor</AssemblyName>
<RootNamespace>Raid.Extractor</RootNamespace>
<ApplicationIcon>Resources\AppIcon.ico</ApplicationIcon>
<Platforms>x64</Platforms>
</PropertyGroup>
</Project>