2022-04-11 10:32:03 -07:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2023-09-25 21:49:49 -04:00
|
|
|
|
<TargetFrameworks>net48;net6.0-windows;net7.0-windows</TargetFrameworks>
|
2023-09-26 23:26:48 -04:00
|
|
|
|
<RuntimeIdentifiers>win-x64</RuntimeIdentifiers>
|
2022-04-11 10:32:03 -07:00
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
|
|
|
|
<UseWPF>true</UseWPF>
|
|
|
|
|
|
<Authors>Matt Nadareski;ReignStumble;Jakz</Authors>
|
2023-03-12 15:48:24 -04:00
|
|
|
|
<Copyright>Copyright (c)2019-2023</Copyright>
|
2023-10-11 13:48:32 -04:00
|
|
|
|
<VersionPrefix>2.7.1</VersionPrefix>
|
2022-04-11 10:32:03 -07:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2023-10-11 11:49:56 -04:00
|
|
|
|
<PropertyGroup Condition="'$(TargetFramework)'!='net48'">
|
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2022-04-11 10:32:03 -07:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Resource Include="Images\ring-code-guide-1-layer.png" />
|
|
|
|
|
|
<Resource Include="Images\ring-code-guide-2-layer.png" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\MPF.Core\MPF.Core.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2023-09-27 00:38:00 -04:00
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)'=='net48'">
|
2022-04-11 10:32:03 -07:00
|
|
|
|
<Reference Include="PresentationFramework.Aero" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2023-09-05 00:08:09 -04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="SabreTools.RedumpLib" Version="1.1.1" />
|
|
|
|
|
|
</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>
|