2019-07-28 23:04:23 +00:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-12-24 17:47:49 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup>
|
2020-06-26 17:19:07 +00:00
|
|
|
|
<TargetFramework>netstandard2.1</TargetFramework>
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
<Platforms>x64</Platforms>
|
|
|
|
|
<RuntimeIdentifier>win10-x64</RuntimeIdentifier>
|
2020-06-27 17:04:59 +00:00
|
|
|
|
<Version>3.0</Version>
|
2020-08-11 15:28:25 +00:00
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<WarningsAsErrors>nullable</WarningsAsErrors>
|
2020-06-26 17:33:38 +00:00
|
|
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
2020-08-11 14:24:23 +00:00
|
|
|
|
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
|
2020-08-15 20:33:05 +00:00
|
|
|
|
<PackageVersion>2.2.1.2</PackageVersion>
|
|
|
|
|
<Version>2.2.1.2</Version>
|
|
|
|
|
<AssemblyVersion>2.2.1.2</AssemblyVersion>
|
|
|
|
|
<FileVersion>2.2.1.2</FileVersion>
|
2019-12-24 17:47:49 +00:00
|
|
|
|
</PropertyGroup>
|
2020-06-26 17:23:50 +00:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
2020-06-27 17:04:59 +00:00
|
|
|
|
<DocumentationFile>Compression.BSA.xml</DocumentationFile>
|
2020-06-26 17:23:50 +00:00
|
|
|
|
</PropertyGroup>
|
2019-12-24 17:47:49 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Genbox.AlphaFS" Version="2.2.2.1" />
|
2020-10-24 16:04:24 +00:00
|
|
|
|
<PackageReference Include="K4os.Compression.LZ4.Streams" Version="1.2.6" />
|
|
|
|
|
<PackageReference Include="SharpZipLib" Version="1.3.0" />
|
2020-09-03 02:49:45 +00:00
|
|
|
|
<PackageReference Include="System.Text.Encoding.CodePages" Version="5.0.0-preview.8.20407.11" />
|
2019-12-24 17:47:49 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Folder Include="Properties\" />
|
|
|
|
|
</ItemGroup>
|
2020-03-05 00:02:16 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Wabbajack.Common\Wabbajack.Common.csproj" />
|
|
|
|
|
</ItemGroup>
|
2019-07-28 23:04:23 +00:00
|
|
|
|
</Project>
|