-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPSG2SaveEditor.csproj
More file actions
28 lines (23 loc) · 891 Bytes
/
Copy pathPSG2SaveEditor.csproj
File metadata and controls
28 lines (23 loc) · 891 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>WinExe</OutputType>
<TargetFramework>net10.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<AssemblyName>PSG2SaveEditor</AssemblyName>
<RootNamespace>PSG2SaveEditor</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.IO.Hashing" Version="10.0.8" />
<PackageReference Include="ZstdSharp.Port" Version="0.8.8" />
</ItemGroup>
<!-- The Analyzer/ folder is a separate reverse-engineering console project. -->
<ItemGroup>
<Compile Remove="Analyzer\**\*.cs" />
</ItemGroup>
<!-- User-editable item-name overrides, copied next to the exe. -->
<ItemGroup>
<None Update="psg2_items.json" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
</Project>