From 5130410344b24df16e932778efe241de1cab97ff Mon Sep 17 00:00:00 2001 From: jay Date: Sun, 12 Nov 2023 20:56:35 -0500 Subject: [PATCH 1/2] fix: remove unused winappsdk templates requirement --- manifests/uno.ui-preview-major.manifest.json | 7 ------- manifests/uno.ui-preview.manifest.json | 7 ------- manifests/uno.ui.manifest.json | 7 ------- 3 files changed, 21 deletions(-) diff --git a/manifests/uno.ui-preview-major.manifest.json b/manifests/uno.ui-preview-major.manifest.json index e339cdb4..4b350e46 100644 --- a/manifests/uno.ui-preview-major.manifest.json +++ b/manifests/uno.ui-preview-major.manifest.json @@ -150,13 +150,6 @@ "win32" ] }, - { - "id": "Microsoft.VisualStudio.ComponentGroup.WindowsAppSDK.Cs", - "name": "Windows App SDK C# Templates", - "requiredby": [ - "wasdk" - ] - }, { "id": "Microsoft.VisualStudio.Workload.NetCrossPlat", "name": "Mobile development with .NET", diff --git a/manifests/uno.ui-preview.manifest.json b/manifests/uno.ui-preview.manifest.json index 10c008ef..df7a278d 100644 --- a/manifests/uno.ui-preview.manifest.json +++ b/manifests/uno.ui-preview.manifest.json @@ -150,13 +150,6 @@ "win32" ] }, - { - "id": "Microsoft.VisualStudio.ComponentGroup.WindowsAppSDK.Cs", - "name": "Windows App SDK C# Templates", - "requiredby": [ - "wasdk" - ] - }, { "id": "Microsoft.VisualStudio.Workload.NetCrossPlat", "name": "Mobile development with .NET", diff --git a/manifests/uno.ui.manifest.json b/manifests/uno.ui.manifest.json index d176ceba..56c6b845 100644 --- a/manifests/uno.ui.manifest.json +++ b/manifests/uno.ui.manifest.json @@ -149,13 +149,6 @@ "win32" ] }, - { - "id": "Microsoft.VisualStudio.ComponentGroup.WindowsAppSDK.Cs", - "name": "Windows App SDK C# Templates", - "requiredby": [ - "wasdk" - ] - }, { "id": "Microsoft.VisualStudio.Workload.NetCrossPlat", "name": "Mobile development with .NET", From eacb864089c376db827bde33d3606b4558c0c54f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Laban?= Date: Sun, 12 Nov 2023 20:59:23 -0500 Subject: [PATCH 2/2] chore: Bump to latest manifest --- UnoCheck/Manifest/Manifest.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/UnoCheck/Manifest/Manifest.cs b/UnoCheck/Manifest/Manifest.cs index fe1b7ddb..2dff95e9 100644 --- a/UnoCheck/Manifest/Manifest.cs +++ b/UnoCheck/Manifest/Manifest.cs @@ -8,9 +8,9 @@ namespace DotNetCheck.Manifest { public partial class Manifest { - public const string DefaultManifestUrl = "https://raw.githubusercontent.com/unoplatform/uno.check/2f4420ad69132752bb21f739b6b674a3223879a3/manifests/uno.ui.manifest.json"; - public const string PreviewManifestUrl = "https://raw.githubusercontent.com/unoplatform/uno.check/2f4420ad69132752bb21f739b6b674a3223879a3/manifests/uno.ui-preview.manifest.json"; - public const string PreviewMajorManifestUrl = "https://raw.githubusercontent.com/unoplatform/uno.check/2f4420ad69132752bb21f739b6b674a3223879a3/manifests/uno.ui-preview-major.manifest.json"; + public const string DefaultManifestUrl = "https://raw.githubusercontent.com/unoplatform/uno.check/5130410344b24df16e932778efe241de1cab97ff/manifests/uno.ui.manifest.json"; + public const string PreviewManifestUrl = "https://raw.githubusercontent.com/unoplatform/uno.check/5130410344b24df16e932778efe241de1cab97ff/manifests/uno.ui-preview.manifest.json"; + public const string PreviewMajorManifestUrl = "https://raw.githubusercontent.com/unoplatform/uno.check/5130410344b24df16e932778efe241de1cab97ff/manifests/uno.ui-preview-major.manifest.json"; public static Task FromFileOrUrl(string fileOrUrl) {