Skip to content

Commit

Permalink
fix(template): Ensure x86, x64, arm64 windows head is deployable by d…
Browse files Browse the repository at this point in the history
…efault
  • Loading branch information
jeromelaban committed Jan 18, 2023
1 parent 0efd543 commit 2c1e21c
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -419,6 +419,12 @@ private void SetBuildableAndDeployable()
{
SetConfiurationDeployable(solutionBuild, "Debug", "Any CPU", ".Windows.csproj");
SetConfiurationDeployable(solutionBuild, "Release", "Any CPU", ".Windows.csproj");
SetConfiurationDeployable(solutionBuild, "Debug", "x86", ".Windows.csproj");
SetConfiurationDeployable(solutionBuild, "Release", "x86", ".Windows.csproj");
SetConfiurationDeployable(solutionBuild, "Debug", "x64", ".Windows.csproj");
SetConfiurationDeployable(solutionBuild, "Release", "x64", ".Windows.csproj");
SetConfiurationDeployable(solutionBuild, "Debug", "arm64", ".Windows.csproj");
SetConfiurationDeployable(solutionBuild, "Release", "arm64", ".Windows.csproj");

SetConfiurationDeployable(solutionBuild, "Debug", "Any CPU", ".Mobile.csproj");
SetConfiurationDeployable(solutionBuild, "Release", "Any CPU", ".Mobile.csproj");
Expand Down

0 comments on commit 2c1e21c

Please sign in to comment.