mirror of
https://github.com/SabreTools/MPF.git
synced 2026-02-04 05:35:52 +00:00
38 lines
1.6 KiB
XML
38 lines
1.6 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<!-- Assembly Properties -->
|
|
<TargetFrameworks>net20;net35;net40;net452;net462;net472;net48;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
|
|
<CheckEolTargetFramework>false</CheckEolTargetFramework>
|
|
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
<LangVersion>latest</LangVersion>
|
|
<Nullable>enable</Nullable>
|
|
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<VersionPrefix>3.5.0</VersionPrefix>
|
|
<WarningsNotAsErrors>NU5104</WarningsNotAsErrors>
|
|
|
|
<!-- Package Properties -->
|
|
<Authors>Matt Nadareski;ReignStumble;Jakz</Authors>
|
|
<Description>Common code for all MPF execution contexts</Description>
|
|
<Copyright>Copyright (c) Matt Nadareski 2019-2025</Copyright>
|
|
<PackageProjectUrl>https://github.com/SabreTools/</PackageProjectUrl>
|
|
<RepositoryUrl>https://github.com/SabreTools/MPF</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="README.md" Pack="true" PackagePath="" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<InternalsVisibleTo Include="MPF.ExecutionContexts.Test" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="SabreTools.RedumpLib" Version="[1.8.0]" />
|
|
</ItemGroup>
|
|
|
|
</Project> |