Skip to content

Commit f40b88e

Browse files
committed
fix winmd paths
1 parent 7b654a8 commit f40b88e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
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 ..\..\example\windows\packages\Microsoft.UI.Xaml.2.6.0\lib\uap10.0\Microsoft.UI.Xaml.winmd
34+
run: dotnet run -verbose -winmd %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 ..\..\example\windows\packages\Microsoft.UI.Xaml.2.6.0\lib\uap10.0\Microsoft.UI.Xaml.winmd
30+
run: dotnet run -verbose -winmd %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

package/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
}

package/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"typings": "lib/index.d.ts",
88
"scripts": {
99
"build": "tsc -b",
10-
"codegen": "dotnet run --project codegen -verbose -winmd ..\\example\\windows\\packages\\Microsoft.UI.Xaml.2.6.0\\lib\\uap10.0\\Microsoft.UI.Xaml.winmd && yarn build"
10+
"codegen": "dotnet run --project codegen -verbose -winmd %USERPROFILE%\\.nuget\\packages\\microsoft.ui.xaml\\2.6.0\\lib\\uap10.0\\Microsoft.UI.Xaml.winmd && yarn build"
1111
},
1212
"repository": {
1313
"type": "git",

0 commit comments

Comments
 (0)