mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
37 lines
1.5 KiB
XML
37 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net5.0-windows</TargetFramework>
|
|
<Platforms>x64</Platforms>
|
|
<RuntimeIdentifier>win10-x64</RuntimeIdentifier>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
<DocumentationFile>Wabbajack.VirtualFileSystem.xml</DocumentationFile>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Compression.BSA\Compression.BSA.csproj" />
|
|
<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" />
|
|
<PackageReference Include="OMODFramework" Version="3.0.1" />
|
|
<PackageReference Include="SharpCompress" Version="0.28.2" />
|
|
<PackageReference Include="System.Collections.Immutable" Version="5.0.0" />
|
|
</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>
|
|
<ItemGroup>
|
|
<Folder Include="Extractors\OMOD" />
|
|
</ItemGroup>
|
|
</Project> |