Files
MPF/MPF.UI.Core/MPF.UI.Core.csproj

61 lines
2.8 KiB
XML
Raw Normal View History

2022-04-11 10:32:03 -07:00
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
2023-11-14 23:14:33 -05:00
<!-- Assembly Properties -->
2023-11-30 12:58:06 -05:00
<TargetFrameworks>net35;net40;net452;net462;net472;net48;netcoreapp3.1;net5.0-windows;net6.0-windows;net7.0-windows;net8.0-windows</TargetFrameworks>
2023-11-14 23:14:33 -05:00
<RuntimeIdentifiers>win-x86;win-x64</RuntimeIdentifiers>
2023-11-15 16:29:47 -05:00
<CheckEolTargetFramework>false</CheckEolTargetFramework>
2024-02-05 00:41:11 -05:00
<EnableWindowsTargeting>true</EnableWindowsTargeting>
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
2023-11-30 18:00:45 -05:00
<ImportFrameworkWinFXTargets Condition="$(TargetFramework.StartsWith(`net3`))">true</ImportFrameworkWinFXTargets>
2023-11-14 23:14:33 -05:00
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
2023-11-14 23:40:41 -05:00
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
2023-11-14 23:14:33 -05:00
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
2022-04-11 10:32:03 -07:00
<UseWindowsForms>true</UseWindowsForms>
<UseWPF>true</UseWPF>
2024-03-16 11:50:02 -04:00
<VersionPrefix>3.1.4</VersionPrefix>
2023-11-14 23:14:33 -05:00
<!-- Package Properties -->
2022-04-11 10:32:03 -07:00
<Authors>Matt Nadareski;ReignStumble;Jakz</Authors>
2023-11-14 23:14:33 -05:00
<Description>Common code for all MPF UI implementations</Description>
2024-02-06 11:20:57 -05:00
<Copyright>Copyright (c) Matt Nadareski 2019-2024</Copyright>
2023-11-14 23:14:33 -05:00
<PackageProjectUrl>https://github.com/SabreTools/</PackageProjectUrl>
<RepositoryUrl>https://github.com/SabreTools/MPF</RepositoryUrl>
<RepositoryType>git</RepositoryType>
2022-04-11 10:32:03 -07:00
</PropertyGroup>
<ItemGroup>
<Resource Include="Images\ring-code-guide-1-layer.png" />
<Resource Include="Images\ring-code-guide-2-layer.png" />
</ItemGroup>
2023-11-30 23:34:44 -05:00
<ItemGroup>
<ProjectReference Include="..\MPF.Core\MPF.Core.csproj" />
</ItemGroup>
2023-11-30 18:00:45 -05:00
<!-- Support for old .NET versions -->
<ItemGroup Condition="$(TargetFramework.StartsWith(`net3`))">
2023-11-30 23:34:44 -05:00
<Reference Include="PresentationBuildTasks" HintPath="$(ProgramFiles)\Reference Assemblies\Microsoft\Framework\v3.0\PresentationBuildTasks.dll" />
2023-11-30 20:51:04 -05:00
<Reference Include="PresentationCore" HintPath="$(ProgramFiles)\Reference Assemblies\Microsoft\Framework\v3.0\PresentationCore.dll" />
2023-11-30 23:34:44 -05:00
<Reference Include="PresentationFramework" HintPath="$(ProgramFiles)\Reference Assemblies\Microsoft\Framework\v3.0\PresentationFramework.dll" />
2023-11-30 20:51:04 -05:00
<Reference Include="WindowsBase" HintPath="$(ProgramFiles)\Reference Assemblies\Microsoft\Framework\v3.0\WindowsBase.dll" />
2023-11-30 18:00:45 -05:00
</ItemGroup>
2023-11-30 20:51:04 -05:00
2023-09-05 00:08:09 -04:00
<ItemGroup>
2024-03-15 13:00:34 -04:00
<PackageReference Include="SabreTools.RedumpLib" Version="1.3.6" />
2023-09-05 00:08:09 -04:00
</ItemGroup>
2022-04-11 10:32:03 -07:00
<ItemGroup>
<Page Update="UserControls\UserInput.xaml">
<XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
</Page>
<Page Update="Windows\DiscInformationWindow.xaml">
<XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
</Page>
<Page Update="Windows\RingCodeGuideWindow.xaml">
<XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
</Page>
</ItemGroup>
</Project>