mirror of
https://github.com/chylex/Brotli-Builder.git
synced 2024-10-14 03:42:47 +02:00
31 lines
1.1 KiB
XML
31 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
|
<LangVersion>latest</LangVersion>
|
|
<ApplicationIcon />
|
|
<StartupObject>BrotliCalc.Program</StartupObject>
|
|
<Authors>Daniel Chýlek</Authors>
|
|
<Copyright>Daniel Chýlek</Copyright>
|
|
<RepositoryUrl>https://github.com/chylex/Brotli-Builder</RepositoryUrl>
|
|
<Version>2.0.0</Version>
|
|
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\BrotliImpl\BrotliImpl.csproj" />
|
|
<ProjectReference Include="..\BrotliLib\BrotliLib.csproj" />
|
|
</ItemGroup>
|
|
|
|
<Target Name="CopyResourcesBuild" AfterTargets="Build">
|
|
<Copy SourceFiles="Resources\brotli.exe;Resources\LICENSE-BROTLI.txt" DestinationFolder="$(OutDir)" SkipUnchangedFiles="true" />
|
|
</Target>
|
|
|
|
<Target Name="CopyResourcesPublish" AfterTargets="Publish">
|
|
<Copy SourceFiles="Resources\brotli.exe;Resources\LICENSE-BROTLI.txt" DestinationFolder="$(PublishDir)" SkipUnchangedFiles="true" />
|
|
</Target>
|
|
|
|
</Project>
|