Initial commit: FluidExplorer:从零实现的 WinUI 3 文件资源管理器替代品(Mica、命令栏、面包屑)

This commit is contained in:
WpyQwq
2026-09-19 11:54:03 +08:00
commit 5780fde61a
60 changed files with 15035 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
<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>