-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Drop uwp and switch to uno.sdk
- Loading branch information
1 parent
fbe8ccf
commit 2f03f61
Showing
1,038 changed files
with
4,039 additions
and
14,495 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,4 @@ steps: | |
retryCountOnTaskFailure: 3 | ||
inputs: | ||
packageType: sdk | ||
version: 8.0.100 | ||
version: 8.0.301 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"msbuild-sdks": { | ||
"MSBuild.Sdk.Extras": "3.0.44", | ||
"Uno.Sdk": "5.3.31" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,60 +1,27 @@ | ||
<Project> | ||
<Import Project="../../src/maui-embedding.props" /> | ||
<Import Project="..\..\Directory.Build.props" /> | ||
|
||
<PropertyGroup> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
<PropertyGroup> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally> | ||
|
||
<DebugType>portable</DebugType> | ||
<DebugSymbols>True</DebugSymbols> | ||
<!-- | ||
Adding NoWarn to remove build warnings | ||
NU1507: Warning when there are multiple package sources when using CPM with no source mapping | ||
NETSDK1201: Warning that specifying RID won't create self containing app | ||
PRI257: Ignore default language (en) not being one of the included resources (eg en-us, en-uk) | ||
--> | ||
<NoWarn>$(NoWarn);NU1507;NETSDK1201;PRI257</NoWarn> | ||
|
||
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally> | ||
<WarningsNotAsErrors>NU1009</WarningsNotAsErrors> | ||
<NoWarn>$(NoWarn);CA1416;NU1507;NU1009</NoWarn> | ||
<_UseTelerik>false</_UseTelerik> | ||
</PropertyGroup> | ||
|
||
<DefaultLanguage>en</DefaultLanguage> | ||
|
||
<IsAndroid>false</IsAndroid> | ||
<IsIOS>false</IsIOS> | ||
<IsMac>false</IsMac> | ||
<IsMacCatalyst>false</IsMacCatalyst> | ||
<IsWinAppSdk>false</IsWinAppSdk> | ||
<_UseTelerik>false</_UseTelerik> | ||
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally> | ||
</PropertyGroup> | ||
|
||
<Choose> | ||
<When Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'"> | ||
<PropertyGroup> | ||
<IsAndroid>true</IsAndroid> | ||
<SupportedOSPlatformVersion>21.0</SupportedOSPlatformVersion> | ||
</PropertyGroup> | ||
</When> | ||
<When Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'"> | ||
<PropertyGroup> | ||
<IsIOS>true</IsIOS> | ||
<SupportedOSPlatformVersion>14.2</SupportedOSPlatformVersion> | ||
</PropertyGroup> | ||
</When> | ||
<When Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'macos'"> | ||
<PropertyGroup> | ||
<IsMac>true</IsMac> | ||
<SupportedOSPlatformVersion>10.14</SupportedOSPlatformVersion> | ||
</PropertyGroup> | ||
</When> | ||
<When Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'"> | ||
<PropertyGroup> | ||
<IsMacCatalyst>true</IsMacCatalyst> | ||
<SupportedOSPlatformVersion>14.0</SupportedOSPlatformVersion> | ||
</PropertyGroup> | ||
</When> | ||
<When Condition="$(TargetFramework.Contains('windows10'))"> | ||
<PropertyGroup> | ||
<IsWinAppSdk>true</IsWinAppSdk> | ||
<RuntimeIdentifiers>win-x86;win-x64;win-arm64</RuntimeIdentifiers> | ||
<SupportedOSPlatformVersion>10.0.18362.0</SupportedOSPlatformVersion> | ||
<TargetPlatformMinVersion>10.0.18362.0</TargetPlatformMinVersion> | ||
</PropertyGroup> | ||
</When> | ||
</Choose> | ||
<!-- See https://aka.platform.uno/using-uno-sdk#implicit-packages for more information regarding the Implicit Packages version properties. --> | ||
<!-- <PropertyGroup> | ||
<UnoExtensionsVersion>4.1.24</UnoExtensionsVersion> | ||
<UnoToolkitVersion>6.0.24</UnoToolkitVersion> | ||
<UnoThemesVersion>5.0.13</UnoThemesVersion> | ||
<UnoCSharpMarkupVersion>5.2.14</UnoCSharpMarkupVersion> | ||
</PropertyGroup> --> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,2 @@ | ||
<Project> | ||
<ItemGroup> | ||
<!-- Removes native usings to avoid Ambiguous reference --> | ||
<Using Remove="@(Using->HasMetadata('Platform'))" /> | ||
</ItemGroup> | ||
|
||
<Import Project="..\..\src\winappsdk-workaround.targets" Condition="exists('..\..\src\winappsdk-workaround.targets')" /> | ||
|
||
<Project> | ||
</Project> |
Oops, something went wrong.