-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSoulsFormats.csproj
More file actions
28 lines (28 loc) · 1.34 KB
/
SoulsFormats.csproj
File metadata and controls
28 lines (28 loc) · 1.34 KB
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>
<TargetFramework>net9.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Copyright>Copyright © Joseph Anderson 2019</Copyright>
<Description>A .NET library for reading and writing FromSoftware file formats.</Description>
<Company>JKAnderson</Company>
<Authors>Joseph Anderson</Authors>
<PackageProjectUrl>https://github.com/JKAnderson/SoulsFormats</PackageProjectUrl>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Platforms>x64</Platforms>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<DebugType>embedded</DebugType>
<PlatformTarget>x64</PlatformTarget>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup Condition="$(TargetFramework.StartsWith('netstandard'))">
<PackageReference Include="System.Text.Encoding.CodePages" Version="4.7.0" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="BouncyCastle.Cryptography" Version="2.4.0" />
<PackageReference Include="DrSwizzler" Version="1.1.1" />
<PackageReference Include="System.Text.Encoding.CodePages" Version="8.0.0" />
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
<PackageReference Include="ZstdNet" Version="1.4.5" />
</ItemGroup>
</Project>