wabbajack/Wabbajack.Common/Wabbajack.Common.csproj

64 lines
3.1 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>
<TargetFramework>netstandard2.1</TargetFramework>
<Platforms>x64</Platforms>
<RuntimeIdentifier>win10-x64</RuntimeIdentifier>
<Nullable>enable</Nullable>
2020-06-14 13:13:29 +00:00
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<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>
<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>
<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" />
<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>
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" />
<PackageReference Include="Octodiff" Version="1.2.1" />
2020-07-01 04:08:34 +00:00
<PackageReference Include="ReactiveUI" Version="11.4.17" />
<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" />
<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" />
<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>
</ItemGroup>
2019-07-21 04:40:54 +00:00
</Project>