mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-11 05:35:15 +00:00
84 lines
3.4 KiB
XML
84 lines
3.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>netstandard2.0</TargetFrameworks>
|
|
<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-2022 Matt Nadareski</Copyright>
|
|
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
|
|
<RepositoryUrl>https://github.com/mnadareski/BurnOutSharp</RepositoryUrl>
|
|
<Version>2.3.4</Version>
|
|
<AssemblyVersion>2.3.4</AssemblyVersion>
|
|
<FileVersion>2.3.4</FileVersion>
|
|
<IncludeSource>true</IncludeSource>
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="OpenMcdf" Version="2.2.1.12" />
|
|
<PackageReference Include="SharpCompress" Version="0.32.2" />
|
|
<PackageReference Include="System.Text.Encoding.CodePages" Version="6.0.0" />
|
|
<PackageReference Include="Teronis.MSBuild.Packaging.ProjectBuildInPackage" Version="1.0.0">
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="UnshieldSharp" Version="1.6.8" />
|
|
<PackageReference Include="WiseUnpacker" Version="1.0.3" />
|
|
<PackageReference Include="zlib.net-mutliplatform" Version="1.0.6" />
|
|
</ItemGroup>
|
|
|
|
<!-- These are needed for dealing with submodules -->
|
|
<PropertyGroup>
|
|
<DefaultItemExcludes>
|
|
$(DefaultItemExcludes);
|
|
**\AssemblyInfo.cs;
|
|
External\stormlibsharp\lib\**;
|
|
External\stormlibsharp\TestConsole\**
|
|
</DefaultItemExcludes>
|
|
</PropertyGroup>
|
|
|
|
<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>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Dtf\src\WixToolset.Dtf.Compression\WixToolset.Dtf.Compression.csproj">
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\Dtf\src\WixToolset.Dtf.Compression.Cab\WixToolset.Dtf.Compression.Cab.csproj">
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\HLLibSharp\HLLibSharp\HLLibSharp.csproj">
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\LibMSPackSharp\LibMSPackSharp\LibMSPackSharp.csproj">
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="ExecutableType\Apple\" />
|
|
<Folder Include="ExecutableType\ELF\" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|