Files
SabreTools.Serialization/InfoPrint/InfoPrint.csproj

40 lines
2.2 KiB
XML
Raw Normal View History

2024-11-26 19:51:39 -05:00
<Project Sdk="Microsoft.NET.Sdk">
2024-04-02 11:56:27 -04:00
2024-11-13 02:42:14 -05:00
<PropertyGroup>
2025-11-14 09:06:59 -05:00
<TargetFrameworks>net20;net35;net40;net452;net462;net472;net48;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0;net9.0;net10.0</TargetFrameworks>
2024-11-13 02:42:14 -05:00
<OutputType>Exe</OutputType>
<CheckEolTargetFramework>false</CheckEolTargetFramework>
2025-08-29 12:59:33 -04:00
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
2024-11-13 02:42:14 -05:00
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
2026-07-06 09:57:11 -04:00
<Version>3.0.1</Version>
2024-11-13 02:42:14 -05:00
</PropertyGroup>
2024-04-02 11:56:27 -04:00
2024-11-13 02:42:14 -05:00
<!-- Support All Frameworks -->
<PropertyGroup Condition="$(TargetFramework.StartsWith(`net2`)) OR $(TargetFramework.StartsWith(`net3`)) OR $(TargetFramework.StartsWith(`net4`))">
<RuntimeIdentifiers>win-x86;win-x64</RuntimeIdentifiers>
</PropertyGroup>
<PropertyGroup Condition="$(TargetFramework.StartsWith(`netcoreapp`)) OR $(TargetFramework.StartsWith(`net5`))">
<RuntimeIdentifiers>win-x86;win-x64;win-arm64;linux-x64;linux-arm64;osx-x64</RuntimeIdentifiers>
</PropertyGroup>
2025-11-14 09:06:59 -05:00
<PropertyGroup Condition="$(TargetFramework.StartsWith(`net6`)) OR $(TargetFramework.StartsWith(`net7`)) OR $(TargetFramework.StartsWith(`net8`)) OR $(TargetFramework.StartsWith(`net9`)) OR $(TargetFramework.StartsWith(`net10`))">
2024-11-13 02:42:14 -05:00
<RuntimeIdentifiers>win-x86;win-x64;win-arm64;linux-x64;linux-arm64;osx-x64;osx-arm64</RuntimeIdentifiers>
</PropertyGroup>
<PropertyGroup Condition="$(RuntimeIdentifier.StartsWith(`osx-arm`))">
2025-11-14 09:06:59 -05:00
<TargetFrameworks>net6.0;net7.0;net8.0;net9.0;net10.0</TargetFrameworks>
2024-11-13 02:42:14 -05:00
</PropertyGroup>
2024-11-13 02:42:14 -05:00
<ItemGroup>
<ProjectReference Include="..\SabreTools.Wrappers\SabreTools.Wrappers.csproj" />
2024-11-13 02:42:14 -05:00
</ItemGroup>
2024-04-02 11:56:27 -04:00
2024-11-20 16:06:00 -05:00
<ItemGroup>
2025-11-14 09:06:59 -05:00
<PackageReference Include="SabreTools.CommandLine" Version="[1.4.0]" />
2026-03-24 18:02:49 -04:00
<PackageReference Include="SabreTools.Hashing" Version="[2.0.0]" />
2026-05-14 09:25:26 -04:00
<PackageReference Include="SabreTools.IO" Version="[2.1.0]" />
2024-11-20 16:06:00 -05:00
</ItemGroup>
2024-11-13 02:42:14 -05:00
</Project>