2022-04-11 10:32:03 -07:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2022-04-18 11:03:21 -07:00
|
|
|
|
<TargetFrameworks>net48;net6.0-windows</TargetFrameworks>
|
2023-04-24 21:31:39 -04:00
|
|
|
|
<RuntimeIdentifiers>win7-x64;win8-x64;win81-x64;win10-x64</RuntimeIdentifiers>
|
2022-04-11 10:32:03 -07:00
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
|
|
|
|
<UseWPF>true</UseWPF>
|
|
|
|
|
|
<Title>MPF.UI.Core</Title>
|
|
|
|
|
|
<AssemblyName>MPF.UI.Core</AssemblyName>
|
|
|
|
|
|
<Authors>Matt Nadareski;ReignStumble;Jakz</Authors>
|
2023-03-12 15:48:24 -04:00
|
|
|
|
<Copyright>Copyright (c)2019-2023</Copyright>
|
2023-08-15 13:07:33 -04:00
|
|
|
|
<Version>2.6.3</Version>
|
2022-04-11 10:32:03 -07:00
|
|
|
|
<AssemblyVersion>$(Version)</AssemblyVersion>
|
|
|
|
|
|
<FileVersion>$(Version)</FileVersion>
|
|
|
|
|
|
<IncludeSource>true</IncludeSource>
|
|
|
|
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<NrtRevisionFormat>$(Version)-{chash:8}</NrtRevisionFormat>
|
|
|
|
|
|
<NrtResolveSimpleAttributes>true</NrtResolveSimpleAttributes>
|
|
|
|
|
|
<NrtShowRevision>false</NrtShowRevision>
|
2022-12-12 14:45:07 -08:00
|
|
|
|
<UserSecretsId>27abb4ca-bf7a-431e-932f-49153303d5ff</UserSecretsId>
|
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>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\MPF.Core\MPF.Core.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Reference Include="PresentationFramework.Aero" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2023-09-05 00:08:09 -04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="SabreTools.RedumpLib" Version="1.1.1" />
|
|
|
|
|
|
<PackageReference Include="Unclassified.NetRevisionTask" Version="0.4.3">
|
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
</PackageReference>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2022-04-11 10:32:03 -07:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Folder Include="Images\" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<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>
|