We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use a predefined structure for project files
Projects:
<Project Sdk="Microsoft.NET.Sdk"> <!-- Properties --> <PropertyGroup> <!-- Versions --> <TargetFramework>net8.0-windows10.0.22621.0</TargetFramework> ... <!-- Application metadata --> <ApplicationManifest>app.manifest</ApplicationManifest> ... <!-- Package metadata --> <PackageLicenseExpression>MIT</PackageLicenseExpression> ... <!-- Architecture --> <Platforms>x86;x64;ARM64</Platforms> ... <!-- Signing --> <AppxPackageSigningEnabled>true</AppxPackageSigningEnabled> ... <!-- Packaging --> <GenerateAppInstallerFile>true</GenerateAppInstallerFile> ... <!-- Compilation --> <GenerateTestArtifacts>true</GenerateTestArtifacts> ... <!-- Required for MVVM --> <LangVersion>preview</LangVersion> ... <!-- Required for WMI --> <PublishTrimmed>false</PublishTrimmed> ... </PropertyGroup> <!-- Package content --> <ItemGroup> ... </ItemGroup> <!-- App assets --> <ItemGroup> ... </ItemGroup> <!-- Package References --> <ItemGroup> ... </ItemGroup> <!-- Helpers project --> <ItemGroup> <ProjectReference Include="..\Helpers\Rebound.Helpers.csproj" /> ... </ItemGroup> <!-- App manifest --> <ItemGroup> <Manifest Include="$(ApplicationManifest)" /> </ItemGroup> <!-- Add MSIX capability if tooling is enabled and not disabled by project configuration --> <ItemGroup Condition="'$(DisableMsixProjectCapabilityAddedByProject)'!='true' and '$(EnableMsixTooling)'=='true'"> <ProjectCapability Include="Msix" /> </ItemGroup> <!-- Enable Package and Publish menu options if MSIX tooling is enabled and not disabled by project configuration --> <PropertyGroup Condition="'$(DisableHasPackageAndPublishMenuAddedByProject)'!='true' and '$(EnableMsixTooling)'=='true'"> <HasPackageAndPublishMenu>true</HasPackageAndPublishMenu> </PropertyGroup> <!-- XAML Windows --> <ItemGroup> ... </ItemGroup> <!-- XAML Pages --> <ItemGroup> ... </ItemGroup> <!-- Icons --> <ItemGroup> ... </ItemGroup> <!-- GitHub README --> <ItemGroup> ... </ItemGroup> <!-- Publish Properties --> <PropertyGroup> ... </PropertyGroup> </Project>
Readability
No response
Low
The text was updated successfully, but these errors were encountered:
No Please DM
Sorry, something went wrong.
No branches or pull requests
π Description
Use a predefined structure for project files
Projects:
β‘ API Changes
π₯ Usage scenarios
Readability
π Backward Compatibility
No response
π€ Difficulty
Low
The text was updated successfully, but these errors were encountered: