mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-14 05:36:07 +00:00
54 lines
2.0 KiB
XML
54 lines
2.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net472;net48;netcoreapp3.1</TargetFrameworks>
|
|
<PlatformTarget>x86</PlatformTarget>
|
|
<Title>BurnOutSharp</Title>
|
|
<AssemblyName>BurnOutSharp</AssemblyName>
|
|
<Description>Port of BurnOut to C#, with additions</Description>
|
|
<Authors>Matt Nadareski;Gernot Knippen</Authors>
|
|
<Product>BurnOutSharp</Product>
|
|
<Copyright>Copyright (c)2005-2010 Gernot Knippen, Copyright (c)2018-2020 Matt Nadareski</Copyright>
|
|
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
|
|
<RepositoryUrl>https://github.com/mnadareski/BurnOutSharp</RepositoryUrl>
|
|
<Version>1.4.1</Version>
|
|
<AssemblyVersion>1.4.1</AssemblyVersion>
|
|
<FileVersion>1.04.1</FileVersion>
|
|
<IncludeSource>true</IncludeSource>
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="LessIO" Version="0.6.16" />
|
|
<PackageReference Include="libmspack4n" Version="0.9.10" />
|
|
<PackageReference Include="SharpCompress" Version="0.26.0" />
|
|
<PackageReference Include="UnshieldSharp" Version="1.4.2.3" />
|
|
<PackageReference Include="WiseUnpacker" Version="1.0.1" />
|
|
<PackageReference Include="wix-libs" Version="3.11.1" />
|
|
<PackageReference Include="zlib.net" Version="1.0.4" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="LICENSE.txt" Pack="true" PackagePath="$(PackageLicenseFile)" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="*.dll" Pack="true">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
<CopyToPublishDirectory>Always</CopyToPublishDirectory>
|
|
<PackageCopyToOutput>true</PackageCopyToOutput>
|
|
</None>
|
|
<None Include="*.pdb" Pack="true">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
<CopyToPublishDirectory>Always</CopyToPublishDirectory>
|
|
<PackageCopyToOutput>true</PackageCopyToOutput>
|
|
</None>
|
|
|
|
</ItemGroup>
|
|
|
|
</Project>
|