mirror of
https://github.com/chylex/Brotli-Builder.git
synced 2024-12-21 22:42:48 +01:00
26 lines
739 B
XML
26 lines
739 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.1</TargetFramework>
|
|
<Platforms>AnyCPU</Platforms>
|
|
<LangVersion>latest</LangVersion>
|
|
<Authors>Daniel Chýlek</Authors>
|
|
<Copyright>Daniel Chýlek</Copyright>
|
|
<RepositoryUrl>https://github.com/chylex/Brotli-Builder</RepositoryUrl>
|
|
<Version>1.1.0</Version>
|
|
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Brotli\Dictionary\Default\dict" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="LICENSE-BROTLI.txt">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project>
|