Skip to content

Commit 219e51f

Browse files
committed
upgrade pacakge to winUI to 2.7
1 parent a1789cd commit 219e51f

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.github/workflows/SetUpAppForNuget.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ param (
33
[switch]
44
$UseNuGet,
55
[Version]
6-
$WinUIVersion = "2.6.0"
6+
$WinUIVersion = "2.7.0"
77
)
88

99
$AppName = Split-Path $PWD -Leaf

.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 $env: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.7.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 %USERPROFILE%\\.nuget\\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.7.0\\lib\\uap10.0\\Microsoft.UI.Xaml.winmd"
66
}
77
}
88
}

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 %USERPROFILE%\\.nuget\\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.7.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 %USERPROFILE%\\.nuget\\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.7.0\\lib\\uap10.0\\Microsoft.UI.Xaml.winmd && yarn build"
1111
},
1212
"repository": {
1313
"type": "git",

package/windows/ExperimentalFeatures.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<PropertyGroup Label="Microsoft.ReactNative Build Flags">
66
<UseWinUI3>false</UseWinUI3>
77
<UseHermes>false</UseHermes>
8-
<WinUI2xVersion>2.6.0</WinUI2xVersion>
8+
<WinUI2xVersion>2.7.0</WinUI2xVersion>
99
</PropertyGroup>
1010

1111
<PropertyGroup>

package/windows/ReactNativeXaml/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
<packages>
33
<package id="CDebug" version="0.0.3" targetFramework="native" />
44
<package id="Microsoft.Windows.CppWinRT" version="2.0.210309.3" targetFramework="native" />
5-
<package id="Microsoft.UI.Xaml" version="2.6.0" targetFramework="native" />
5+
<package id="Microsoft.UI.Xaml" version="2.7.0" targetFramework="native" />
66
</packages>

0 commit comments

Comments
 (0)