2024-07-14 11:24:10 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
|
|
|
|
<TargetFramework>net7.0-windows10.0.19041.0</TargetFramework>
|
|
|
|
|
<TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion>
|
|
|
|
|
<RootNamespace>RustTools</RootNamespace>
|
2024-08-08 04:29:27 +00:00
|
|
|
|
<Platform>x64</Platform>
|
2024-07-14 11:24:10 +00:00
|
|
|
|
<Platforms>x86;x64;arm64</Platforms>
|
2024-08-08 04:29:27 +00:00
|
|
|
|
<WindowsAppSDKSelfContained>true</WindowsAppSDKSelfContained>
|
2024-07-14 11:24:10 +00:00
|
|
|
|
<RuntimeIdentifiers>win10-x86;win10-x64;win10-arm64</RuntimeIdentifiers>
|
2024-08-08 04:29:27 +00:00
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<UseWinUI>true</UseWinUI>
|
2024-07-14 11:24:10 +00:00
|
|
|
|
<EnableMsixTooling>true</EnableMsixTooling>
|
|
|
|
|
<AssemblyName>RustTools</AssemblyName>
|
|
|
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
|
|
|
<PackageIcon>tool.png</PackageIcon>
|
|
|
|
|
<ApplicationIcon>Assets\WindowIcon.ico</ApplicationIcon>
|
|
|
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
|
|
|
<DefaultLanguage>zh-cn</DefaultLanguage>
|
2024-08-08 04:29:27 +00:00
|
|
|
|
|
|
|
|
|
|
2024-08-06 06:34:25 +00:00
|
|
|
|
<GenerateAppInstallerFile>False</GenerateAppInstallerFile>
|
2024-08-03 11:49:28 +00:00
|
|
|
|
<AppxPackageSigningEnabled>True</AppxPackageSigningEnabled>
|
|
|
|
|
<PackageCertificateThumbprint>3386EC79D3BB9691D0A8DA634167500B242E109D</PackageCertificateThumbprint>
|
|
|
|
|
<AppxPackageSigningTimestampDigestAlgorithm>SHA256</AppxPackageSigningTimestampDigestAlgorithm>
|
|
|
|
|
<AppxAutoIncrementPackageRevision>False</AppxAutoIncrementPackageRevision>
|
|
|
|
|
<AppxSymbolPackageEnabled>False</AppxSymbolPackageEnabled>
|
|
|
|
|
<GenerateTestArtifacts>True</GenerateTestArtifacts>
|
|
|
|
|
<AppxBundle>Never</AppxBundle>
|
|
|
|
|
<AppInstallerUri>C:\\RustTools</AppInstallerUri>
|
|
|
|
|
<AppxPackageDir>D:\RustTools</AppxPackageDir>
|
2024-07-14 11:24:10 +00:00
|
|
|
|
</PropertyGroup>
|
2024-08-08 04:29:27 +00:00
|
|
|
|
|
2024-07-14 11:24:10 +00:00
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Manifest Include="$(ApplicationManifest)" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.1.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="6.0.1" />
|
|
|
|
|
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.4.231008000" />
|
|
|
|
|
<PackageReference Include="Microsoft.Xaml.Behaviors.WinUI.Managed" Version="2.0.9" />
|
2024-07-24 02:53:16 +00:00
|
|
|
|
<PackageReference Include="RestClient" Version="3.1024.23771" />
|
|
|
|
|
<PackageReference Include="RestSharp" Version="111.4.0" />
|
2024-07-26 10:50:25 +00:00
|
|
|
|
<PackageReference Include="System.Management" Version="8.0.0" />
|
2024-07-14 11:24:10 +00:00
|
|
|
|
<PackageReference Include="WinUIEx" Version="2.3.2" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2024-08-08 04:29:27 +00:00
|
|
|
|
<Content Include="Assets\**">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2024-08-07 02:31:13 +00:00
|
|
|
|
<Page Update="Views\ModulePage.xaml">
|
|
|
|
|
<Generator>MSBuild:Compile</Generator>
|
|
|
|
|
</Page>
|
2024-08-05 11:38:55 +00:00
|
|
|
|
<Page Update="Styles\TitleSubtitleControlStyle.xaml">
|
|
|
|
|
<Generator>MSBuild:Compile</Generator>
|
|
|
|
|
</Page>
|
2024-08-03 11:49:28 +00:00
|
|
|
|
<Page Update="Styles\ItemView.xaml">
|
|
|
|
|
<Generator>MSBuild:Compile</Generator>
|
|
|
|
|
</Page>
|
2024-08-01 14:28:39 +00:00
|
|
|
|
<Page Update="WindowUI\ImportModule.xaml">
|
|
|
|
|
<Generator>MSBuild:Compile</Generator>
|
|
|
|
|
</Page>
|
2024-08-03 11:49:28 +00:00
|
|
|
|
<Page Update="Views\ConcernPage.xaml">
|
2024-07-15 05:22:53 +00:00
|
|
|
|
<Generator>MSBuild:Compile</Generator>
|
|
|
|
|
</Page>
|
|
|
|
|
<Page Update="Views\UserPage.xaml">
|
|
|
|
|
<Generator>MSBuild:Compile</Generator>
|
|
|
|
|
</Page>
|
|
|
|
|
<Page Update="Views\RankingPage.xaml">
|
|
|
|
|
<Generator>MSBuild:Compile</Generator>
|
|
|
|
|
</Page>
|
2024-07-14 11:24:10 +00:00
|
|
|
|
<Page Update="Views\HomePage.xaml">
|
|
|
|
|
<Generator>MSBuild:Compile</Generator>
|
|
|
|
|
</Page>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup Condition="'$(DisableMsixProjectCapabilityAddedByProject)'!='true' and '$(EnableMsixTooling)'=='true'">
|
|
|
|
|
<ProjectCapability Include="Msix" />
|
|
|
|
|
</ItemGroup>
|
2024-08-08 04:29:27 +00:00
|
|
|
|
|
|
|
|
|
|
2024-07-14 11:24:10 +00:00
|
|
|
|
<PropertyGroup Condition="'$(DisableHasPackageAndPublishMenuAddedByProject)'!='true' and '$(EnableMsixTooling)'=='true'">
|
|
|
|
|
<HasPackageAndPublishMenu>true</HasPackageAndPublishMenu>
|
|
|
|
|
</PropertyGroup>
|
2024-08-08 04:29:27 +00:00
|
|
|
|
|
|
|
|
|
</Project>
|