wabbajack/Wabbajack.VirtualFileSystem/Wabbajack.VirtualFileSystem.csproj

37 lines
1.5 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
2020-01-09 23:07:42 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2021-01-01 00:06:56 +00:00
<TargetFramework>net5.0-windows</TargetFramework>
<Platforms>x64</Platforms>
<RuntimeIdentifier>win10-x64</RuntimeIdentifier>
2020-09-04 21:00:29 +00:00
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2020-01-09 23:07:42 +00:00
</PropertyGroup>
2020-06-26 17:23:50 +00:00
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<DocumentationFile>Wabbajack.VirtualFileSystem.xml</DocumentationFile>
</PropertyGroup>
2020-01-09 23:07:42 +00:00
<ItemGroup>
<ProjectReference Include="..\Compression.BSA\Compression.BSA.csproj" />
2020-01-09 23:07:42 +00:00
<ProjectReference Include="..\Wabbajack.Common\Wabbajack.Common.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Genbox.AlphaFS" Version="2.2.2.1" />
<PackageReference Include="K4os.Hash.Crc" Version="1.1.4" />
2020-12-07 04:26:02 +00:00
<PackageReference Include="OMODFramework" Version="2.1.0.2" />
2020-09-06 03:19:05 +00:00
<PackageReference Include="SharpCompress" Version="0.26.0" />
2020-11-14 14:26:04 +00:00
<PackageReference Include="System.Collections.Immutable" Version="5.0.0" />
2020-01-09 23:07:42 +00:00
</ItemGroup>
<ItemGroup>
<None Update="Extractors\7z.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Extractors\7z.exe">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Extractors\innounp.exe">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
2020-09-08 22:15:33 +00:00
<ItemGroup>
<Folder Include="Extractors\OMOD" />
</ItemGroup>
</Project>