Skip to content

Commit af07ef1

Browse files
committed
fix winmd paths 2
1 parent f40b88e commit af07ef1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
run: nuget restore example\windows\example.sln
3232

3333
- name: run CodeGen
34-
run: dotnet run -verbose -winmd %USERPROFILE%\.nuget\packages\microsoft.ui.xaml\2.6.0\lib\uap10.0\Microsoft.UI.Xaml.winmd
34+
run: dotnet run -verbose -winmd $env:USERPROFILE\.nuget\packages\microsoft.ui.xaml\2.6.0\lib\uap10.0\Microsoft.UI.Xaml.winmd
3535
working-directory: package\Codegen
3636

3737
- name: build TS

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
run: nuget restore example\windows\example.sln
2828

2929
- name: run CodeGen
30-
run: dotnet run -verbose -winmd %USERPROFILE%\.nuget\packages\microsoft.ui.xaml\2.6.0\lib\uap10.0\Microsoft.UI.Xaml.winmd
30+
run: dotnet run -verbose -winmd $env:USERPROFILE\.nuget\packages\microsoft.ui.xaml\2.6.0\lib\uap10.0\Microsoft.UI.Xaml.winmd
3131
working-directory: package\Codegen
3232

3333
- name: build TS

codegen/Properties/launchSettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"profiles": {
33
"Codegen": {
44
"commandName": "Project",
5-
"commandLineArgs": "-verbose -winmd ..\\..\\..\\..\\..\\example\\windows\\packages\\Microsoft.UI.Xaml.2.6.0\\lib\\uap10.0\\Microsoft.UI.Xaml.winmd"
5+
"commandLineArgs": "-verbose -winmd %USERPROFILE%\\.nuget\\packages\\microsoft.ui.xaml\\2.6.0\\lib\\uap10.0\\Microsoft.UI.Xaml.winmd"
66
}
77
}
88
}

0 commit comments

Comments
 (0)