wabbajack/Wabbajack.Common/Wabbajack.Common.csproj

49 lines
2.2 KiB
XML
Raw Normal View History

2019-07-21 04:40:54 +00:00
<?xml version="1.0" encoding="utf-8"?>
2019-12-26 16:47:10 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2020-01-25 23:25:51 +00:00
<TargetFramework>netstandard2.1</TargetFramework>
<Platforms>AnyCPU;x64</Platforms>
2019-12-26 16:47:10 +00:00
</PropertyGroup>
<ItemGroup>
2020-01-07 13:50:11 +00:00
<None Remove="7z.dll.gz" />
<None Remove="7z.exe.gz" />
<None Remove="innounp.exe.gz" />
<None Update="7Zip\7z.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="7Zip\7z.exe">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Extractors\innounp.exe">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Extractors\7z.exe">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Extractors\7z.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
2019-12-26 16:47:10 +00:00
</ItemGroup>
<ItemGroup>
<Folder Include="KnownFolders\" />
<Folder Include="Properties\" />
</ItemGroup>
<ItemGroup>
2020-01-07 13:50:11 +00:00
<PackageReference Include="Ceras" Version="4.1.7" />
<PackageReference Include="Genbox.AlphaFS" Version="2.2.2.1" />
<PackageReference Include="ini-parser-netstandard" Version="2.5.2" />
<PackageReference Include="Microsoft.Win32.Registry" Version="4.7.0" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="ReactiveUI" Version="11.1.23" />
2020-01-07 13:50:11 +00:00
<PackageReference Include="SharpZipLib" Version="1.2.0" />
<PackageReference Include="System.Data.HashFunction.xxHash" Version="2.0.0" />
<PackageReference Include="System.Security.Cryptography.ProtectedData" Version="4.7.0" />
<PackageReference Include="System.Security.Principal.Windows" Version="4.7.0" />
2020-01-21 12:50:53 +00:00
<PackageReference Include="YamlDotNet" Version="8.1.0" />
2019-12-26 16:47:10 +00:00
</ItemGroup>
<ItemGroup>
2020-01-07 13:50:11 +00:00
<ProjectReference Include="..\Compression.BSA\Compression.BSA.csproj" />
<ProjectReference Include="..\OMODExtractor\OMODExtractor.csproj" />
<ProjectReference Include="..\Wabbajack.Common.CSP\Wabbajack.Common.CSP.csproj" />
2019-12-26 16:47:10 +00:00
</ItemGroup>
2019-07-21 04:40:54 +00:00
</Project>