WIn_RustTools/RustTools.csproj

56 lines
2.4 KiB
XML
Raw Normal View History

2024-07-14 11:24:10 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows10.0.19041.0</TargetFramework>
2024-07-14 11:24:10 +00:00
<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-11 11:16:42 +00:00
<EnablePreviewMsixTooling>true</EnablePreviewMsixTooling>
2024-08-08 04:29:27 +00:00
<WindowsAppSDKSelfContained>true</WindowsAppSDKSelfContained>
<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-11 11:16:42 +00:00
</PropertyGroup>
2024-07-14 11:24:10 +00:00
<ItemGroup>
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.1.0" />
2024-08-13 10:47:12 +00:00
<PackageReference Include="CommunityToolkit.WinUI.Controls.Sizers" Version="8.0.240109" />
2024-07-14 11:24:10 +00:00
<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-08-24 11:50:04 +00:00
<PackageReference Include="squirrel.windows" Version="2.0.1" />
<PackageReference Include="System.Management" Version="8.0.0" />
2024-08-31 10:32:38 +00:00
<PackageReference Include="TinyPinyin" Version="1.1.0" />
2024-07-14 11:24:10 +00:00
<PackageReference Include="WinUIEx" Version="2.3.2" />
2024-08-09 07:05:40 +00:00
<PackageReference Include="Microsoft.Windows.CsWinRT" Version="2.0.7" />
<!--<PackageReference
Include="Microsoft.WindowsAppSDK" Version="1.5.240227000" />-->
2024-08-09 07:05:40 +00:00
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.22621.3233" />
2024-08-11 11:16:42 +00:00
<Manifest Include="$(ApplicationManifest)" />
2024-07-14 11:24:10 +00:00
</ItemGroup>
<!--在vs
code 中必须加上不然没有任何图标-->
2024-07-14 11:24:10 +00:00
<ItemGroup>
2024-08-08 04:29:27 +00:00
<Content Include="Assets\**">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
2024-08-11 11:16:42 +00:00
<ItemGroup
Condition="'$(DisableMsixProjectCapabilityAddedByProject)'!='true' and '$(EnableMsixTooling)'=='true'">
2024-07-14 11:24:10 +00:00
<ProjectCapability Include="Msix" />
</ItemGroup>
2024-08-08 04:29:27 +00:00
</Project>