wabbajack/Wabbajack.Common/Wabbajack.Common.csproj

77 lines
3.8 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-12-31 23:39:18 +00:00
<TargetFramework>net5.0-windows</TargetFramework>
<Platforms>x64</Platforms>
<RuntimeIdentifier>win10-x64</RuntimeIdentifier>
<Nullable>enable</Nullable>
2020-06-14 13:13:29 +00:00
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<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>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<PackageVersion>2.4.1.2</PackageVersion>
<Version>2.4.1.2</Version>
<AssemblyVersion>2.4.1.2</AssemblyVersion>
<FileVersion>2.4.1.2</FileVersion>
2020-09-06 03:19:05 +00:00
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
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>
<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" />
2021-03-11 12:44:36 +00:00
<PackageReference Include="HtmlAgilityPack" Version="1.11.31" />
2020-01-07 13:50:11 +00:00
<PackageReference Include="ini-parser-netstandard" Version="2.5.2" />
2020-11-14 14:26:04 +00:00
<PackageReference Include="Microsoft.Win32.Registry" Version="5.0.0" />
2020-01-07 13:50:11 +00:00
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="Octodiff" Version="1.2.1" />
2020-12-07 04:26:02 +00:00
<PackageReference Include="SharpZipLib" Version="1.3.1" />
2020-01-07 13:50:11 +00:00
<PackageReference Include="System.Data.HashFunction.xxHash" Version="2.0.0" />
2021-01-05 22:09:32 +00:00
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.113.7" />
2021-02-01 06:41:51 +00:00
<PackageReference Include="System.Management" Version="5.0.0" />
<PackageReference Include="System.Net.Http" Version="4.3.4" />
2020-11-14 14:26:04 +00:00
<PackageReference Include="System.Reactive" Version="5.0.0" />
<PackageReference Include="System.Security.Cryptography.ProtectedData" Version="5.0.0" />
<PackageReference Include="System.Security.Principal.Windows" Version="5.0.0" />
2021-01-29 04:02:26 +00:00
<PackageReference Include="YamlDotNet" Version="9.1.4" />
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>
<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>