Monorepo for Aesthetic.Computer aesthetic.computer
at main 36 lines 1.6 kB view raw
1<Project Sdk="Microsoft.NET.Sdk"> 2 <PropertyGroup> 3 <OutputType>WinExe</OutputType> 4 <TargetFramework>net8.0-windows10.0.22621.0</TargetFramework> 5 <TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion> 6 <RootNamespace>AestheticComputer</RootNamespace> 7 <ApplicationManifest>app.manifest</ApplicationManifest> 8 <Platforms>x86;x64;ARM64</Platforms> 9 <RuntimeIdentifiers>win-x86;win-x64;win-arm64</RuntimeIdentifiers> 10 <UseWinUI>true</UseWinUI> 11 <EnableMsixTooling>true</EnableMsixTooling> 12 <WindowsPackageType>MSIX</WindowsPackageType> 13 <WindowsAppSDKSelfContained>true</WindowsAppSDKSelfContained> 14 <GenerateAppInstallerFile>False</GenerateAppInstallerFile> 15 <AppxPackageSigningEnabled>False</AppxPackageSigningEnabled> 16 <AppxAutoIncrementPackageRevision>True</AppxAutoIncrementPackageRevision> 17 <AppxSymbolPackageEnabled>False</AppxSymbolPackageEnabled> 18 <GenerateTestArtifacts>True</GenerateTestArtifacts> 19 <AppxBundle>Never</AppxBundle> 20 <HoursBetweenUpdateChecks>0</HoursBetweenUpdateChecks> 21 <Nullable>enable</Nullable> 22 <ImplicitUsings>enable</ImplicitUsings> 23 </PropertyGroup> 24 25 <ItemGroup> 26 <Content Include="Assets\**\*"> 27 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> 28 </Content> 29 </ItemGroup> 30 31 <ItemGroup> 32 <PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.26100.1742" /> 33 <PackageReference Include="Microsoft.WindowsAppSDK" Version="1.6.250108002" /> 34 <Manifest Include="$(ApplicationManifest)" /> 35 </ItemGroup> 36</Project>