Skip to content

Commit 6199fff

Browse files
committed
Improving build process
1 parent 72bfda0 commit 6199fff

File tree

2 files changed

+11
-14
lines changed

2 files changed

+11
-14
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,9 @@ jobs:
3434
3535
- name: Build
3636
run: |
37-
dotnet build --configuration Release -p:GenerateAppxPackageOnBuild=true
38-
37+
dotnet build --configuration Release -p:GenerateAppxPackageOnBuild=true -p:Platform=x64
38+
dotnet build --configuration Release -p:GenerateAppxPackageOnBuild=true -p:Platform=arm64
39+
3940
- name: Move misx Packages
4041
run: |
4142
# Move the misx packages to one folder for signing

CmdPalExtensions.sln

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,26 +9,22 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CmdPalRandomDadJokeExtensio
99
EndProject
1010
Global
1111
GlobalSection(SolutionConfigurationPlatforms) = preSolution
12-
Debug|Any CPU = Debug|Any CPU
12+
Debug|arm64 = Debug|arm64
1313
Debug|x64 = Debug|x64
14-
Debug|x86 = Debug|x86
15-
Release|Any CPU = Release|Any CPU
14+
Release|arm64 = Release|arm64
1615
Release|x64 = Release|x64
17-
Release|x86 = Release|x86
1816
EndGlobalSection
1917
GlobalSection(ProjectConfigurationPlatforms) = postSolution
20-
{CDDFFDE5-89FC-4FC3-8FE3-70366047A0D6}.Debug|Any CPU.ActiveCfg = Debug|x64
21-
{CDDFFDE5-89FC-4FC3-8FE3-70366047A0D6}.Debug|Any CPU.Build.0 = Debug|x64
18+
{CDDFFDE5-89FC-4FC3-8FE3-70366047A0D6}.Debug|arm64.ActiveCfg = Debug|ARM64
19+
{CDDFFDE5-89FC-4FC3-8FE3-70366047A0D6}.Debug|arm64.Build.0 = Debug|ARM64
2220
{CDDFFDE5-89FC-4FC3-8FE3-70366047A0D6}.Debug|x64.ActiveCfg = Debug|x64
2321
{CDDFFDE5-89FC-4FC3-8FE3-70366047A0D6}.Debug|x64.Build.0 = Debug|x64
24-
{CDDFFDE5-89FC-4FC3-8FE3-70366047A0D6}.Debug|x86.ActiveCfg = Debug|x64
25-
{CDDFFDE5-89FC-4FC3-8FE3-70366047A0D6}.Debug|x86.Build.0 = Debug|x64
26-
{CDDFFDE5-89FC-4FC3-8FE3-70366047A0D6}.Release|Any CPU.ActiveCfg = Release|x64
27-
{CDDFFDE5-89FC-4FC3-8FE3-70366047A0D6}.Release|Any CPU.Build.0 = Release|x64
22+
{CDDFFDE5-89FC-4FC3-8FE3-70366047A0D6}.Release|arm64.ActiveCfg = Release|ARM64
23+
{CDDFFDE5-89FC-4FC3-8FE3-70366047A0D6}.Release|arm64.Build.0 = Release|ARM64
24+
{CDDFFDE5-89FC-4FC3-8FE3-70366047A0D6}.Release|arm64.Deploy.0 = Release|ARM64
2825
{CDDFFDE5-89FC-4FC3-8FE3-70366047A0D6}.Release|x64.ActiveCfg = Release|x64
2926
{CDDFFDE5-89FC-4FC3-8FE3-70366047A0D6}.Release|x64.Build.0 = Release|x64
30-
{CDDFFDE5-89FC-4FC3-8FE3-70366047A0D6}.Release|x86.ActiveCfg = Release|x64
31-
{CDDFFDE5-89FC-4FC3-8FE3-70366047A0D6}.Release|x86.Build.0 = Release|x64
27+
{CDDFFDE5-89FC-4FC3-8FE3-70366047A0D6}.Release|x64.Deploy.0 = Release|x64
3228
EndGlobalSection
3329
GlobalSection(SolutionProperties) = preSolution
3430
HideSolutionNode = FALSE

0 commit comments

Comments
 (0)