Skip to content
New issue

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

Finished MultiTarget support for solution generation #200

Merged
merged 8 commits into from
Aug 1, 2024
Prev Previous commit
Fixed bad find/replace
  • Loading branch information
Arlodotexe committed Jul 30, 2024
commit 7de12bfc9d0377bd6eb3303a65b34219d881db53
6 changes: 3 additions & 3 deletions MultiTarget/UseTargetFrameworks.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@
Changes the target frameworks to build for each package created within the repository.
.DESCRIPTION
By default, only the UWP, Windows App SDK, and WASM heads are built to simplify dependencies
needed to build projects within the repository. The CI will enable all include to build a package
needed to build projects within the repository. The CI will enable all targets to build a package
that works on all supported platforms.

Note: Projects which rely on target platforms that are excluded will be unable to build.
.PARAMETER MultiTargets
List of include to set as TFM platforms to build for. Possible values match those provided to the <MultiTarget> MSBuild property.
List of targets to set as TFM platforms to build for. Possible values match those provided to the <MultiTarget> MSBuild property.
By default, uwp, wasdk, and wasm will included.
.PARAMETER ExcludeMultiTargets
List to exclude from build. Possible values match those provided to the <MultiTarget> MSBuild property.
By default, none will excluded.
.EXAMPLE
C:\PS> .\UseTargetFrameworks wasdk
Build include for just the WindowsAppSDK.
Build TFMs for only the Windows App SDK.
.NOTES
Author: Windows Community Toolkit Labs Team
Date: April 8, 2022
Expand Down
Loading