diff --git a/dotnet/targets/WorkloadManifest.MacCatalyst.template.json b/dotnet/targets/WorkloadManifest.MacCatalyst.template.json index 1eba2462ed3b..7f9fdd41a0c1 100644 --- a/dotnet/targets/WorkloadManifest.MacCatalyst.template.json +++ b/dotnet/targets/WorkloadManifest.MacCatalyst.template.json @@ -6,6 +6,8 @@ "packs": [ "Microsoft.@PLATFORM@.Sdk", "Microsoft.@PLATFORM@.Ref", + "Microsoft.@PLATFORM@.Runtime.maccatalyst-arm64", + "Microsoft.@PLATFORM@.Runtime.maccatalyst-x64", "Microsoft.@PLATFORM@.Templates" ], "extends": [ @@ -22,6 +24,14 @@ "kind": "framework", "version": "@VERSION@" }, + "Microsoft.@PLATFORM@.Runtime.maccatalyst-arm64": { + "kind": "framework", + "version": "@VERSION@" + }, + "Microsoft.@PLATFORM@.Runtime.maccatalyst-x64": { + "kind": "framework", + "version": "@VERSION@" + }, "Microsoft.@PLATFORM@.Templates": { "kind": "template", "version": "@VERSION@" diff --git a/dotnet/targets/WorkloadManifest.iOS.template.json b/dotnet/targets/WorkloadManifest.iOS.template.json index e476d668982c..513c71e0b8b6 100644 --- a/dotnet/targets/WorkloadManifest.iOS.template.json +++ b/dotnet/targets/WorkloadManifest.iOS.template.json @@ -7,6 +7,10 @@ "Microsoft.@PLATFORM@.Sdk", "Microsoft.@PLATFORM@.Windows.Sdk", "Microsoft.@PLATFORM@.Ref", + "Microsoft.@PLATFORM@.Runtime.ios-arm", + "Microsoft.@PLATFORM@.Runtime.ios-arm64", + "Microsoft.@PLATFORM@.Runtime.iossimulator-x86", + "Microsoft.@PLATFORM@.Runtime.iossimulator-x64", "Microsoft.@PLATFORM@.Templates" ], "extends": [ @@ -27,6 +31,22 @@ "kind": "framework", "version": "@VERSION@" }, + "Microsoft.@PLATFORM@.Runtime.ios-arm": { + "kind": "framework", + "version": "@VERSION@" + }, + "Microsoft.@PLATFORM@.Runtime.ios-arm64": { + "kind": "framework", + "version": "@VERSION@" + }, + "Microsoft.@PLATFORM@.Runtime.iossimulator-x86": { + "kind": "framework", + "version": "@VERSION@" + }, + "Microsoft.@PLATFORM@.Runtime.iossimulator-x64": { + "kind": "framework", + "version": "@VERSION@" + }, "Microsoft.@PLATFORM@.Templates": { "kind": "template", "version": "@VERSION@" diff --git a/dotnet/targets/WorkloadManifest.macOS.template.json b/dotnet/targets/WorkloadManifest.macOS.template.json index 3a3cebc5bde8..7404d828b227 100644 --- a/dotnet/targets/WorkloadManifest.macOS.template.json +++ b/dotnet/targets/WorkloadManifest.macOS.template.json @@ -6,6 +6,8 @@ "packs": [ "Microsoft.@PLATFORM@.Sdk", "Microsoft.@PLATFORM@.Ref", + "Microsoft.@PLATFORM@.Runtime.osx-arm64", + "Microsoft.@PLATFORM@.Runtime.osx-x64", "Microsoft.@PLATFORM@.Templates" ], "extends": [ @@ -22,6 +24,14 @@ "kind": "framework", "version": "@VERSION@" }, + "Microsoft.@PLATFORM@.Runtime.osx-arm64": { + "kind": "framework", + "version": "@VERSION@" + }, + "Microsoft.@PLATFORM@.Runtime.osx-x64": { + "kind": "framework", + "version": "@VERSION@" + }, "Microsoft.@PLATFORM@.Templates": { "kind": "template", "version": "@VERSION@" diff --git a/dotnet/targets/WorkloadManifest.tvOS.template.json b/dotnet/targets/WorkloadManifest.tvOS.template.json index 4d4dfd16d0c0..69457e90cb31 100644 --- a/dotnet/targets/WorkloadManifest.tvOS.template.json +++ b/dotnet/targets/WorkloadManifest.tvOS.template.json @@ -6,6 +6,8 @@ "packs": [ "Microsoft.@PLATFORM@.Sdk", "Microsoft.@PLATFORM@.Ref", + "Microsoft.@PLATFORM@.Runtime.tvos-arm64", + "Microsoft.@PLATFORM@.Runtime.tvossimulator-x64", "Microsoft.@PLATFORM@.Templates" ], "extends": [ @@ -22,6 +24,14 @@ "kind": "framework", "version": "@VERSION@" }, + "Microsoft.@PLATFORM@.Runtime.tvos-arm64": { + "kind": "framework", + "version": "@VERSION@" + }, + "Microsoft.@PLATFORM@.Runtime.tvossimulator-x64": { + "kind": "framework", + "version": "@VERSION@" + }, "Microsoft.@PLATFORM@.Templates": { "kind": "template", "version": "@VERSION@"