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-06-26 17:19:07 +00:00
|
|
|
|
<TargetFramework>netstandard2.1</TargetFramework>
|
2020-02-01 17:33:00 +00:00
|
|
|
|
<Platforms>x64</Platforms>
|
|
|
|
|
<RuntimeIdentifier>win10-x64</RuntimeIdentifier>
|
2020-04-03 23:23:13 +00:00
|
|
|
|
<Nullable>enable</Nullable>
|
2020-06-14 13:13:29 +00:00
|
|
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
2020-06-27 17:04:59 +00:00
|
|
|
|
<PackageVersion>3.0</PackageVersion>
|
2020-06-14 13:13:29 +00:00
|
|
|
|
<Title>Wabbajack Common Lib</Title>
|
|
|
|
|
<Authors>Wabbajack Team</Authors>
|
|
|
|
|
<Copyright>2020</Copyright>
|
|
|
|
|
<PackageProjectUrl>https://github.com/wabbajack-tools/wabbajack</PackageProjectUrl>
|
|
|
|
|
<PackageLicenseUrl>https://raw.githubusercontent.com/wabbajack-tools/wabbajack/master/LICENSE.txt</PackageLicenseUrl>
|
|
|
|
|
<PackageIconUrl>https://www.wabbajack.org/favicon.ico</PackageIconUrl>
|
|
|
|
|
<RepositoryUrl>https://github.com/wabbajack-tools/wabbajack</RepositoryUrl>
|
2020-06-27 17:04:59 +00:00
|
|
|
|
<Version>3.0</Version>
|
2019-12-26 16:47:10 +00:00
|
|
|
|
</PropertyGroup>
|
2020-06-26 17:23:50 +00:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
|
|
|
<DocumentationFile>Wabbajack.Common.xml</DocumentationFile>
|
2020-06-26 17:33:38 +00:00
|
|
|
|
<NoWarn></NoWarn>
|
2020-06-26 17:23:50 +00:00
|
|
|
|
</PropertyGroup>
|
2019-12-26 16:47:10 +00:00
|
|
|
|
<ItemGroup>
|
2020-01-07 13:50:11 +00:00
|
|
|
|
<None Remove="7z.dll.gz" />
|
|
|
|
|
<None Remove="7z.exe.gz" />
|
|
|
|
|
<None Remove="innounp.exe.gz" />
|
2020-01-29 12:20:37 +00:00
|
|
|
|
<None Update="7Zip\7z.dll">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
<None Update="7Zip\7z.exe">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
2020-03-20 23:59:55 +00:00
|
|
|
|
<None Update="Serialization\PrimitiveHandlers.tt">
|
|
|
|
|
<Generator>TextTemplatingFileGenerator</Generator>
|
|
|
|
|
<LastGenOutput>PrimitiveHandlers.cs</LastGenOutput>
|
|
|
|
|
</None>
|
2020-07-15 04:20:56 +00:00
|
|
|
|
<None Update="FileSignatures\Signatures.tt">
|
|
|
|
|
<Generator>TextTemplatingFileGenerator</Generator>
|
|
|
|
|
<LastGenOutput>Signatures.cs</LastGenOutput>
|
|
|
|
|
</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="Genbox.AlphaFS" Version="2.2.2.1" />
|
2020-07-01 04:08:34 +00:00
|
|
|
|
<PackageReference Include="HtmlAgilityPack" Version="1.11.24" />
|
2020-01-07 13:50:11 +00:00
|
|
|
|
<PackageReference Include="ini-parser-netstandard" Version="2.5.2" />
|
2020-07-01 04:08:34 +00:00
|
|
|
|
<PackageReference Include="Microsoft.Win32.Registry" Version="5.0.0-preview.6.20305.6" />
|
2020-01-07 13:50:11 +00:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
|
2020-02-24 23:18:29 +00:00
|
|
|
|
<PackageReference Include="Octodiff" Version="1.2.1" />
|
2020-08-05 22:01:45 +00:00
|
|
|
|
<PackageReference Include="ReactiveUI" Version="11.5.17" />
|
2020-05-12 21:28:09 +00:00
|
|
|
|
<PackageReference Include="RocksDbNative" Version="6.2.2" />
|
|
|
|
|
<PackageReference Include="RocksDbSharp" Version="6.2.2" />
|
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" />
|
2020-02-14 22:23:27 +00:00
|
|
|
|
<PackageReference Include="System.Net.Http" Version="4.3.4" />
|
2020-07-01 04:08:34 +00:00
|
|
|
|
<PackageReference Include="System.Security.Cryptography.ProtectedData" Version="5.0.0-preview.6.20305.6" />
|
|
|
|
|
<PackageReference Include="System.Security.Principal.Windows" Version="5.0.0-preview.6.20305.6" />
|
2020-05-29 07:06:01 +00:00
|
|
|
|
<PackageReference Include="YamlDotNet" Version="8.1.2" />
|
2019-12-26 16:47:10 +00:00
|
|
|
|
</ItemGroup>
|
2020-03-20 23:59:55 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Update="Serialization\PrimitiveHandlers.cs">
|
|
|
|
|
<DependentUpon>PrimitiveHandlers.tt</DependentUpon>
|
|
|
|
|
</Compile>
|
2020-07-15 04:20:56 +00:00
|
|
|
|
<Compile Update="FileSignatures\Signatures.cs">
|
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
|
<DesignTime>True</DesignTime>
|
|
|
|
|
<DependentUpon>Signatures.tt</DependentUpon>
|
|
|
|
|
</Compile>
|
2020-03-20 23:59:55 +00:00
|
|
|
|
</ItemGroup>
|
2019-07-21 04:40:54 +00:00
|
|
|
|
</Project>
|