Skip to content

Commit 3efc05d

Browse files
author
eriklimakc
committed
chore: Update Directory.Build.props to remove unnecessary version override with Uno.Sdk 5.4
1 parent d9592b9 commit 3efc05d

File tree

3 files changed

+21
-9
lines changed

3 files changed

+21
-9
lines changed

UI/Navigation/src/Directory.Build.props

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,4 @@
55
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
66
<NoWarn>$(NoWarn);NU1507;NETSDK1201;PRI257</NoWarn>
77
</PropertyGroup>
8-
9-
<!-- See https://aka.platform.uno/using-uno-sdk#implicit-packages for more information regarding the Implicit Packages version properties. -->
10-
<PropertyGroup>
11-
<UnoExtensionsVersion>5.0.0-dev.316</UnoExtensionsVersion>
12-
<UnoToolkitVersion>6.2.0-dev.37</UnoToolkitVersion>
13-
<UnoThemesVersion>5.2.0-dev.15</UnoThemesVersion>
14-
</PropertyGroup>
158
</Project>

UI/Navigation/src/Navigation/Navigation.csproj

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Uno.Sdk">
1+
<Project Sdk="Uno.Sdk">
22
<PropertyGroup>
33
<TargetFrameworks>
44
net8.0-android;
@@ -19,7 +19,26 @@
1919
<!-- Versions -->
2020
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
2121
<ApplicationVersion>1</ApplicationVersion>
22+
<!--
23+
If you encounter this error message:
2224
25+
error NETSDK1148: A referenced assembly was compiled using a newer version of Microsoft.Windows.SDK.NET.dll.
26+
Please update to a newer .NET SDK in order to reference this assembly.
27+
28+
This means that the two packages below must be aligned with the "build" version number of
29+
the "Microsoft.Windows.SDK.BuildTools" package above, and the "revision" version number
30+
must be the highest found in https://www.nuget.org/packages/Microsoft.Windows.SDK.NET.Ref.
31+
-->
32+
33+
<!-- Uno Platform 5.4 has been updated to use WinAppSDK 1.6, which necessitates a temporary version adjustment until newer versions of .NET 8 SDKs are released. -->
34+
<!-- Comment this WindowsSdkPackageVersion line again once .NET SDK version 8.0.403 or later is available. -->
35+
<!-- For more details, refer to: https://aka.platform.uno/migrate-from-previous#uno-platform-54 -->
36+
<WindowsSdkPackageVersion>10.0.19041.38</WindowsSdkPackageVersion>
37+
38+
<!--
39+
UnoFeatures let's you quickly add and manage implicit package references based on the features you want to use.
40+
https://aka.platform.uno/singleproject-features
41+
-->
2342
<UnoFeatures>
2443
Material;
2544
Hosting;

UI/Navigation/src/global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
// To update the version of Uno please update the version of the Uno.Sdk here. See https://aka.platform.uno/upgrade-uno-packages for more information.
33
"msbuild-sdks": {
4-
"Uno.Sdk": "5.4.0-dev.192"
4+
"Uno.Sdk": "5.4.5"
55
},
66
"sdk": {
77
"allowPrerelease": false

0 commit comments

Comments
 (0)