Files
fluid-explorer/FluidExplorer.csproj

36 lines
1.5 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows10.0.26100.0</TargetFramework>
<TargetPlatformMinVersion>10.0.19041.0</TargetPlatformMinVersion>
<RootNamespace>FluidExplorer</RootNamespace>
<AssemblyName>FluidExplorer</AssemblyName>
<ApplicationManifest>app.manifest</ApplicationManifest>
<Platforms>x64;ARM64</Platforms>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<UseWinUI>true</UseWinUI>
<WindowsPackageType>None</WindowsPackageType>
<WindowsAppSDKSelfContained>true</WindowsAppSDKSelfContained>
<SelfContained>false</SelfContained>
<WindowsSdkPackageVersion>10.0.26100.57</WindowsSdkPackageVersion>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<EnableMsixTooling>false</EnableMsixTooling>
<PublishReadyToRun>false</PublishReadyToRun>
<GenerateAppInstallerFile>false</GenerateAppInstallerFile>
<AppxPackage>false</AppxPackage>
<!-- MVVM Toolkit 的 AOT 建议与本项目无关(不发布 AOT),只保留真正有意义的告警 -->
<NoWarn>$(NoWarn);MVVMTK0045</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.WindowsAppSDK" Version="2.2.0" />
<!-- Microsoft 官方 MVVM 工具包(仅用于 INotifyPropertyChanged 样板代码,不含任何 UI 组件) -->
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.2" />
</ItemGroup>
</Project>