51 lines
2.0 KiB
XML
51 lines
2.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<!-- Assembly Properties -->
|
|
<RuntimeIdentifiers>win-x86;win-x64;win-arm64;linux-x64;linux-arm64;osx-x64;osx-arm64</RuntimeIdentifiers>
|
|
<CheckEolTargetFramework>false</CheckEolTargetFramework>
|
|
<LangVersion>latest</LangVersion>
|
|
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<Version>0.9.3</Version>
|
|
<PackageOutputPath>../nupkg</PackageOutputPath>
|
|
|
|
<!-- Avoid inexact read with 'System.IO.Stream.Read' -->
|
|
<NoWarn>CA2022</NoWarn>
|
|
|
|
<!-- Package Properties -->
|
|
<Authors>Deterous</Authors>
|
|
<Description>Library for ISO Rebuild Data</Description>
|
|
<Copyright>Copyright (c) Deterous 2023-2024</Copyright>
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
<RepositoryUrl>https://github.com/Deterous/LibIRD/</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
<PackageTags>ps3 iso ird redump</PackageTags>
|
|
<PackageLicenseExpression>GPL-3.0-only</PackageLicenseExpression>
|
|
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="$(RuntimeIdentifier.StartsWith(`osx-arm`))">
|
|
<TargetFrameworks>net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="!$(RuntimeIdentifier.StartsWith(`osx-arm`))">
|
|
<TargetFrameworks>net20;net35;net40;net452;net462;net472;net48;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="./README.md" Pack="true" PackagePath="" />
|
|
</ItemGroup>
|
|
|
|
<!-- Support for old .NET versions -->
|
|
<ItemGroup Condition="$(TargetFramework.StartsWith(`net2`))">
|
|
<PackageReference Include="Net30.LinqBridge" Version="1.3.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
<PackageReference Include="SabreTools.Hashing" Version="1.4.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|