mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
19 lines
471 B
XML
19 lines
471 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|||
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|||
|
<PlatformTarget>x64</PlatformTarget>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<None Update="libbsarch.dll">
|
|||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|||
|
</None>
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
</Project>
|