42 lines
1.5 KiB
XML
42 lines
1.5 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<!-- Assembly Properties -->
|
|
<OutputType>Exe</OutputType>
|
|
<TargetName>irdkit</TargetName>
|
|
<AssemblyName>irdkit</AssemblyName>
|
|
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
|
|
<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.7.1</Version>
|
|
|
|
<!-- 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>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="./README.md" Pack="true" PackagePath="" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="CommandLineParser" Version="2.9.1" />
|
|
<PackageReference Include="SabreTools.Hashing" Version="1.1.4" />
|
|
<PackageReference Include="SabreTools.RedumpLib" Version="1.3.4" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\LibIRD\LibIRD.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|