From 0c38cb69dda34ad2f16ea206781626604775b4db Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Tue, 6 Dec 2022 09:18:10 +0000 Subject: [PATCH 1/4] Update Pulumi codegen to net6.0 .NET Core 3.1 is out of support on December 13th: https://dotnet.microsoft.com/en-us/platform/support/policy/dotnet-core We've already stopped testing on .NET Core 3.1, and program gen has been targetting only 6.0 for a while now as well. This updates sdkgen to only 6.0 as well. --- .../20221206--sdk-dotnet--drop-support-for-net-core-3-1.yaml | 4 ++++ pkg/codegen/dotnet/gen.go | 2 +- pkg/codegen/dotnet/templates.go | 2 +- .../auto/test/errors/compilation_error/dotnet/dotnet.csproj | 2 +- sdk/go/auto/test/errors/runtime_error/dotnet/adsfsdf.csproj | 2 +- .../automation/errors/compilation_error/dotnet/dotnet.csproj | 2 +- .../automation/errors/runtime_error/dotnet/adsfsdf.csproj | 2 +- 7 files changed, 10 insertions(+), 6 deletions(-) create mode 100644 changelog/pending/20221206--sdk-dotnet--drop-support-for-net-core-3-1.yaml diff --git a/changelog/pending/20221206--sdk-dotnet--drop-support-for-net-core-3-1.yaml b/changelog/pending/20221206--sdk-dotnet--drop-support-for-net-core-3-1.yaml new file mode 100644 index 000000000000..dfb43567993f --- /dev/null +++ b/changelog/pending/20221206--sdk-dotnet--drop-support-for-net-core-3-1.yaml @@ -0,0 +1,4 @@ +changes: +- type: feat + scope: sdk/dotnet + description: Drop support for .NET Core 3.1. diff --git a/pkg/codegen/dotnet/gen.go b/pkg/codegen/dotnet/gen.go index 1ce7ec099519..6948d68fcc17 100644 --- a/pkg/codegen/dotnet/gen.go +++ b/pkg/codegen/dotnet/gen.go @@ -2076,7 +2076,7 @@ func genProjectFile(pkg *schema.Package, // only add a package reference to Pulumi if we're not referencing a local Pulumi project // which we usually do when testing schemas locally if !referencedLocalPulumiProject { - packageReferences["Pulumi"] = "[3.23.0,4)" + packageReferences["Pulumi"] = "[3.49.0,4)" } } diff --git a/pkg/codegen/dotnet/templates.go b/pkg/codegen/dotnet/templates.go index 10b9e11303c3..7bbead8fff42 100644 --- a/pkg/codegen/dotnet/templates.go +++ b/pkg/codegen/dotnet/templates.go @@ -132,7 +132,7 @@ const csharpProjectFileTemplateText = ` {{.Package.Repository}} logo.png - netcoreapp3.1 + net6.0 enable false diff --git a/sdk/go/auto/test/errors/compilation_error/dotnet/dotnet.csproj b/sdk/go/auto/test/errors/compilation_error/dotnet/dotnet.csproj index 7f5af17205a1..f2ce42fa8823 100644 --- a/sdk/go/auto/test/errors/compilation_error/dotnet/dotnet.csproj +++ b/sdk/go/auto/test/errors/compilation_error/dotnet/dotnet.csproj @@ -2,7 +2,7 @@ Exe - netcoreapp3.1 + net6.0 enable diff --git a/sdk/go/auto/test/errors/runtime_error/dotnet/adsfsdf.csproj b/sdk/go/auto/test/errors/runtime_error/dotnet/adsfsdf.csproj index 7f5af17205a1..f2ce42fa8823 100644 --- a/sdk/go/auto/test/errors/runtime_error/dotnet/adsfsdf.csproj +++ b/sdk/go/auto/test/errors/runtime_error/dotnet/adsfsdf.csproj @@ -2,7 +2,7 @@ Exe - netcoreapp3.1 + net6.0 enable diff --git a/sdk/python/lib/test/automation/errors/compilation_error/dotnet/dotnet.csproj b/sdk/python/lib/test/automation/errors/compilation_error/dotnet/dotnet.csproj index 7f5af17205a1..f2ce42fa8823 100644 --- a/sdk/python/lib/test/automation/errors/compilation_error/dotnet/dotnet.csproj +++ b/sdk/python/lib/test/automation/errors/compilation_error/dotnet/dotnet.csproj @@ -2,7 +2,7 @@ Exe - netcoreapp3.1 + net6.0 enable diff --git a/sdk/python/lib/test/automation/errors/runtime_error/dotnet/adsfsdf.csproj b/sdk/python/lib/test/automation/errors/runtime_error/dotnet/adsfsdf.csproj index 7f5af17205a1..f2ce42fa8823 100644 --- a/sdk/python/lib/test/automation/errors/runtime_error/dotnet/adsfsdf.csproj +++ b/sdk/python/lib/test/automation/errors/runtime_error/dotnet/adsfsdf.csproj @@ -2,7 +2,7 @@ Exe - netcoreapp3.1 + net6.0 enable From 2ff8e8f350b8f9cfaba4bf06ec66611c0e47f83f Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Wed, 4 Jan 2023 16:22:59 +0000 Subject: [PATCH 2/4] Update dotnet version --- pkg/codegen/dotnet/gen.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/codegen/dotnet/gen.go b/pkg/codegen/dotnet/gen.go index 6948d68fcc17..ba84d64c57a0 100644 --- a/pkg/codegen/dotnet/gen.go +++ b/pkg/codegen/dotnet/gen.go @@ -2076,7 +2076,7 @@ func genProjectFile(pkg *schema.Package, // only add a package reference to Pulumi if we're not referencing a local Pulumi project // which we usually do when testing schemas locally if !referencedLocalPulumiProject { - packageReferences["Pulumi"] = "[3.49.0,4)" + packageReferences["Pulumi"] = "[3.51.0,4)" } } From bbec4d1dc341d1e928815979eb4afcb49f8e1594 Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Wed, 4 Jan 2023 16:35:56 +0000 Subject: [PATCH 3/4] Don't require a higher Pulumi.nuget net6 can reference net3.1 --- pkg/codegen/dotnet/gen.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/codegen/dotnet/gen.go b/pkg/codegen/dotnet/gen.go index ba84d64c57a0..1ce7ec099519 100644 --- a/pkg/codegen/dotnet/gen.go +++ b/pkg/codegen/dotnet/gen.go @@ -2076,7 +2076,7 @@ func genProjectFile(pkg *schema.Package, // only add a package reference to Pulumi if we're not referencing a local Pulumi project // which we usually do when testing schemas locally if !referencedLocalPulumiProject { - packageReferences["Pulumi"] = "[3.51.0,4)" + packageReferences["Pulumi"] = "[3.23.0,4)" } } From 290d0fce5a4b7adda44ce04ee7a11285dded7237 Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Wed, 4 Jan 2023 17:43:42 +0000 Subject: [PATCH 4/4] Fix tests --- .../azure-native-nested-types/dotnet/Pulumi.AzureNative.csproj | 2 +- .../test/testdata/cyclic-types/dotnet/Pulumi.Example.csproj | 2 +- .../test/testdata/dash-named-schema/dotnet/Pulumi.FooBar.csproj | 2 +- .../testdata/dashed-import-schema/dotnet/Pulumi.Plant.csproj | 2 +- .../test/testdata/different-enum/dotnet/Pulumi.Plant.csproj | 2 +- .../test/testdata/enum-reference/dotnet/Pulumi.Example.csproj | 2 +- .../test/testdata/external-enum/dotnet/Pulumi.Example.csproj | 2 +- .../external-resource-schema/dotnet/Pulumi.Example.csproj | 2 +- .../test/testdata/functions-secrets/dotnet/Pulumi.Mypkg.csproj | 2 +- .../hyphen-url/dotnet/Pulumi.Registrygeoreplication.csproj | 2 +- .../testdata/naming-collisions/dotnet/Pulumi.Example.csproj | 2 +- .../nested-module-thirdparty/dotnet/Pulumi.FooBar.csproj | 2 +- .../test/testdata/nested-module/dotnet/Pulumi.Foo.csproj | 2 +- .../test/testdata/other-owned/dotnet/Other.Example.csproj | 2 +- .../output-funcs-edgeorder/dotnet/Pulumi.Myedgeorder.csproj | 2 +- .../testdata/output-funcs-tfbridge20/dotnet/Pulumi.Mypkg.csproj | 2 +- .../test/testdata/output-funcs/dotnet/Pulumi.Mypkg.csproj | 2 +- .../test/testdata/plain-and-default/dotnet/Pulumi.FooBar.csproj | 2 +- .../testdata/plain-object-defaults/dotnet/Pulumi.Example.csproj | 2 +- .../plain-object-disable-defaults/dotnet/Pulumi.Example.csproj | 2 +- .../test/testdata/plain-schema-gh6957/dotnet/Pulumi.Xyz.csproj | 2 +- .../dotnet/Configstation.Pulumi.Configstation.csproj | 2 +- .../testdata/regress-8403/dotnet/Pulumi.Mongodbatlas.csproj | 2 +- .../test/testdata/regress-node-8110/dotnet/Pulumi.My8110.csproj | 2 +- .../testdata/replace-on-change/dotnet/Pulumi.Example.csproj | 2 +- .../dotnet/Pulumi.Example.csproj | 2 +- .../testdata/resource-args-python/dotnet/Pulumi.Example.csproj | 2 +- .../resource-property-overlap/dotnet/Pulumi.Example.csproj | 2 +- .../testing/test/testdata/secrets/dotnet/Pulumi.Mypkg.csproj | 2 +- .../test/testdata/simple-enum-schema/dotnet/Pulumi.Plant.csproj | 2 +- .../dotnet/Pulumi.Example.csproj | 2 +- .../testdata/simple-methods-schema/dotnet/Pulumi.Example.csproj | 2 +- .../dotnet/Pulumi.Example.csproj | 2 +- .../testdata/simple-plain-schema/dotnet/Pulumi.Example.csproj | 2 +- .../dotnet/Pulumi.Example.csproj | 2 +- .../simple-resource-schema/dotnet/Pulumi.Example.csproj | 2 +- .../testdata/simple-yaml-schema/dotnet/Pulumi.Example.csproj | 2 +- 37 files changed, 37 insertions(+), 37 deletions(-) diff --git a/pkg/codegen/testing/test/testdata/azure-native-nested-types/dotnet/Pulumi.AzureNative.csproj b/pkg/codegen/testing/test/testdata/azure-native-nested-types/dotnet/Pulumi.AzureNative.csproj index 2354383d0207..b74fb2b5b55e 100644 --- a/pkg/codegen/testing/test/testdata/azure-native-nested-types/dotnet/Pulumi.AzureNative.csproj +++ b/pkg/codegen/testing/test/testdata/azure-native-nested-types/dotnet/Pulumi.AzureNative.csproj @@ -10,7 +10,7 @@ https://github.com/pulumi/pulumi-azure-native logo.png - netcoreapp3.1 + net6.0 enable false diff --git a/pkg/codegen/testing/test/testdata/cyclic-types/dotnet/Pulumi.Example.csproj b/pkg/codegen/testing/test/testdata/cyclic-types/dotnet/Pulumi.Example.csproj index c4ef888b5eaa..a55ad736c4f1 100644 --- a/pkg/codegen/testing/test/testdata/cyclic-types/dotnet/Pulumi.Example.csproj +++ b/pkg/codegen/testing/test/testdata/cyclic-types/dotnet/Pulumi.Example.csproj @@ -10,7 +10,7 @@ logo.png - netcoreapp3.1 + net6.0 enable false diff --git a/pkg/codegen/testing/test/testdata/dash-named-schema/dotnet/Pulumi.FooBar.csproj b/pkg/codegen/testing/test/testdata/dash-named-schema/dotnet/Pulumi.FooBar.csproj index 75f31f394b6a..2b93d06811b6 100644 --- a/pkg/codegen/testing/test/testdata/dash-named-schema/dotnet/Pulumi.FooBar.csproj +++ b/pkg/codegen/testing/test/testdata/dash-named-schema/dotnet/Pulumi.FooBar.csproj @@ -10,7 +10,7 @@ logo.png - netcoreapp3.1 + net6.0 enable false diff --git a/pkg/codegen/testing/test/testdata/dashed-import-schema/dotnet/Pulumi.Plant.csproj b/pkg/codegen/testing/test/testdata/dashed-import-schema/dotnet/Pulumi.Plant.csproj index c4ef888b5eaa..a55ad736c4f1 100644 --- a/pkg/codegen/testing/test/testdata/dashed-import-schema/dotnet/Pulumi.Plant.csproj +++ b/pkg/codegen/testing/test/testdata/dashed-import-schema/dotnet/Pulumi.Plant.csproj @@ -10,7 +10,7 @@ logo.png - netcoreapp3.1 + net6.0 enable false diff --git a/pkg/codegen/testing/test/testdata/different-enum/dotnet/Pulumi.Plant.csproj b/pkg/codegen/testing/test/testdata/different-enum/dotnet/Pulumi.Plant.csproj index ef6c86e98d2b..4c31f5dbc6a0 100644 --- a/pkg/codegen/testing/test/testdata/different-enum/dotnet/Pulumi.Plant.csproj +++ b/pkg/codegen/testing/test/testdata/different-enum/dotnet/Pulumi.Plant.csproj @@ -10,7 +10,7 @@ logo.png - netcoreapp3.1 + net6.0 enable false diff --git a/pkg/codegen/testing/test/testdata/enum-reference/dotnet/Pulumi.Example.csproj b/pkg/codegen/testing/test/testdata/enum-reference/dotnet/Pulumi.Example.csproj index 02c07de318f5..f34dd7f836e3 100644 --- a/pkg/codegen/testing/test/testdata/enum-reference/dotnet/Pulumi.Example.csproj +++ b/pkg/codegen/testing/test/testdata/enum-reference/dotnet/Pulumi.Example.csproj @@ -10,7 +10,7 @@ logo.png - netcoreapp3.1 + net6.0 enable false diff --git a/pkg/codegen/testing/test/testdata/external-enum/dotnet/Pulumi.Example.csproj b/pkg/codegen/testing/test/testdata/external-enum/dotnet/Pulumi.Example.csproj index 3e730a74a9e7..42d3f4d4f986 100644 --- a/pkg/codegen/testing/test/testdata/external-enum/dotnet/Pulumi.Example.csproj +++ b/pkg/codegen/testing/test/testdata/external-enum/dotnet/Pulumi.Example.csproj @@ -10,7 +10,7 @@ logo.png - netcoreapp3.1 + net6.0 enable false diff --git a/pkg/codegen/testing/test/testdata/external-resource-schema/dotnet/Pulumi.Example.csproj b/pkg/codegen/testing/test/testdata/external-resource-schema/dotnet/Pulumi.Example.csproj index 0bd5272ddee7..7399402023ef 100644 --- a/pkg/codegen/testing/test/testdata/external-resource-schema/dotnet/Pulumi.Example.csproj +++ b/pkg/codegen/testing/test/testdata/external-resource-schema/dotnet/Pulumi.Example.csproj @@ -10,7 +10,7 @@ logo.png - netcoreapp3.1 + net6.0 enable false diff --git a/pkg/codegen/testing/test/testdata/functions-secrets/dotnet/Pulumi.Mypkg.csproj b/pkg/codegen/testing/test/testdata/functions-secrets/dotnet/Pulumi.Mypkg.csproj index c4ef888b5eaa..a55ad736c4f1 100644 --- a/pkg/codegen/testing/test/testdata/functions-secrets/dotnet/Pulumi.Mypkg.csproj +++ b/pkg/codegen/testing/test/testdata/functions-secrets/dotnet/Pulumi.Mypkg.csproj @@ -10,7 +10,7 @@ logo.png - netcoreapp3.1 + net6.0 enable false diff --git a/pkg/codegen/testing/test/testdata/hyphen-url/dotnet/Pulumi.Registrygeoreplication.csproj b/pkg/codegen/testing/test/testdata/hyphen-url/dotnet/Pulumi.Registrygeoreplication.csproj index 7724bf402d8b..6e9409381374 100644 --- a/pkg/codegen/testing/test/testdata/hyphen-url/dotnet/Pulumi.Registrygeoreplication.csproj +++ b/pkg/codegen/testing/test/testdata/hyphen-url/dotnet/Pulumi.Registrygeoreplication.csproj @@ -10,7 +10,7 @@ logo.png - netcoreapp3.1 + net6.0 enable false diff --git a/pkg/codegen/testing/test/testdata/naming-collisions/dotnet/Pulumi.Example.csproj b/pkg/codegen/testing/test/testdata/naming-collisions/dotnet/Pulumi.Example.csproj index c4ef888b5eaa..a55ad736c4f1 100644 --- a/pkg/codegen/testing/test/testdata/naming-collisions/dotnet/Pulumi.Example.csproj +++ b/pkg/codegen/testing/test/testdata/naming-collisions/dotnet/Pulumi.Example.csproj @@ -10,7 +10,7 @@ logo.png - netcoreapp3.1 + net6.0 enable false diff --git a/pkg/codegen/testing/test/testdata/nested-module-thirdparty/dotnet/Pulumi.FooBar.csproj b/pkg/codegen/testing/test/testdata/nested-module-thirdparty/dotnet/Pulumi.FooBar.csproj index c4ef888b5eaa..a55ad736c4f1 100644 --- a/pkg/codegen/testing/test/testdata/nested-module-thirdparty/dotnet/Pulumi.FooBar.csproj +++ b/pkg/codegen/testing/test/testdata/nested-module-thirdparty/dotnet/Pulumi.FooBar.csproj @@ -10,7 +10,7 @@ logo.png - netcoreapp3.1 + net6.0 enable false diff --git a/pkg/codegen/testing/test/testdata/nested-module/dotnet/Pulumi.Foo.csproj b/pkg/codegen/testing/test/testdata/nested-module/dotnet/Pulumi.Foo.csproj index ef6c86e98d2b..4c31f5dbc6a0 100644 --- a/pkg/codegen/testing/test/testdata/nested-module/dotnet/Pulumi.Foo.csproj +++ b/pkg/codegen/testing/test/testdata/nested-module/dotnet/Pulumi.Foo.csproj @@ -10,7 +10,7 @@ logo.png - netcoreapp3.1 + net6.0 enable false diff --git a/pkg/codegen/testing/test/testdata/other-owned/dotnet/Other.Example.csproj b/pkg/codegen/testing/test/testdata/other-owned/dotnet/Other.Example.csproj index 5be4e95acb0a..b0912a9b7d85 100644 --- a/pkg/codegen/testing/test/testdata/other-owned/dotnet/Other.Example.csproj +++ b/pkg/codegen/testing/test/testdata/other-owned/dotnet/Other.Example.csproj @@ -10,7 +10,7 @@ logo.png - netcoreapp3.1 + net6.0 enable false diff --git a/pkg/codegen/testing/test/testdata/output-funcs-edgeorder/dotnet/Pulumi.Myedgeorder.csproj b/pkg/codegen/testing/test/testdata/output-funcs-edgeorder/dotnet/Pulumi.Myedgeorder.csproj index c4ef888b5eaa..a55ad736c4f1 100644 --- a/pkg/codegen/testing/test/testdata/output-funcs-edgeorder/dotnet/Pulumi.Myedgeorder.csproj +++ b/pkg/codegen/testing/test/testdata/output-funcs-edgeorder/dotnet/Pulumi.Myedgeorder.csproj @@ -10,7 +10,7 @@ logo.png - netcoreapp3.1 + net6.0 enable false diff --git a/pkg/codegen/testing/test/testdata/output-funcs-tfbridge20/dotnet/Pulumi.Mypkg.csproj b/pkg/codegen/testing/test/testdata/output-funcs-tfbridge20/dotnet/Pulumi.Mypkg.csproj index 1002383a9baa..f46bc012fac7 100644 --- a/pkg/codegen/testing/test/testdata/output-funcs-tfbridge20/dotnet/Pulumi.Mypkg.csproj +++ b/pkg/codegen/testing/test/testdata/output-funcs-tfbridge20/dotnet/Pulumi.Mypkg.csproj @@ -10,7 +10,7 @@ logo.png - netcoreapp3.1 + net6.0 enable false diff --git a/pkg/codegen/testing/test/testdata/output-funcs/dotnet/Pulumi.Mypkg.csproj b/pkg/codegen/testing/test/testdata/output-funcs/dotnet/Pulumi.Mypkg.csproj index 1002383a9baa..f46bc012fac7 100644 --- a/pkg/codegen/testing/test/testdata/output-funcs/dotnet/Pulumi.Mypkg.csproj +++ b/pkg/codegen/testing/test/testdata/output-funcs/dotnet/Pulumi.Mypkg.csproj @@ -10,7 +10,7 @@ logo.png - netcoreapp3.1 + net6.0 enable false diff --git a/pkg/codegen/testing/test/testdata/plain-and-default/dotnet/Pulumi.FooBar.csproj b/pkg/codegen/testing/test/testdata/plain-and-default/dotnet/Pulumi.FooBar.csproj index c4ef888b5eaa..a55ad736c4f1 100644 --- a/pkg/codegen/testing/test/testdata/plain-and-default/dotnet/Pulumi.FooBar.csproj +++ b/pkg/codegen/testing/test/testdata/plain-and-default/dotnet/Pulumi.FooBar.csproj @@ -10,7 +10,7 @@ logo.png - netcoreapp3.1 + net6.0 enable false diff --git a/pkg/codegen/testing/test/testdata/plain-object-defaults/dotnet/Pulumi.Example.csproj b/pkg/codegen/testing/test/testdata/plain-object-defaults/dotnet/Pulumi.Example.csproj index c4ef888b5eaa..a55ad736c4f1 100644 --- a/pkg/codegen/testing/test/testdata/plain-object-defaults/dotnet/Pulumi.Example.csproj +++ b/pkg/codegen/testing/test/testdata/plain-object-defaults/dotnet/Pulumi.Example.csproj @@ -10,7 +10,7 @@ logo.png - netcoreapp3.1 + net6.0 enable false diff --git a/pkg/codegen/testing/test/testdata/plain-object-disable-defaults/dotnet/Pulumi.Example.csproj b/pkg/codegen/testing/test/testdata/plain-object-disable-defaults/dotnet/Pulumi.Example.csproj index c4ef888b5eaa..a55ad736c4f1 100644 --- a/pkg/codegen/testing/test/testdata/plain-object-disable-defaults/dotnet/Pulumi.Example.csproj +++ b/pkg/codegen/testing/test/testdata/plain-object-disable-defaults/dotnet/Pulumi.Example.csproj @@ -10,7 +10,7 @@ logo.png - netcoreapp3.1 + net6.0 enable false diff --git a/pkg/codegen/testing/test/testdata/plain-schema-gh6957/dotnet/Pulumi.Xyz.csproj b/pkg/codegen/testing/test/testdata/plain-schema-gh6957/dotnet/Pulumi.Xyz.csproj index cfeb60495556..f4b0153203f5 100644 --- a/pkg/codegen/testing/test/testdata/plain-schema-gh6957/dotnet/Pulumi.Xyz.csproj +++ b/pkg/codegen/testing/test/testdata/plain-schema-gh6957/dotnet/Pulumi.Xyz.csproj @@ -10,7 +10,7 @@ logo.png - netcoreapp3.1 + net6.0 enable false diff --git a/pkg/codegen/testing/test/testdata/provider-config-schema/dotnet/Configstation.Pulumi.Configstation.csproj b/pkg/codegen/testing/test/testdata/provider-config-schema/dotnet/Configstation.Pulumi.Configstation.csproj index ef6c86e98d2b..4c31f5dbc6a0 100644 --- a/pkg/codegen/testing/test/testdata/provider-config-schema/dotnet/Configstation.Pulumi.Configstation.csproj +++ b/pkg/codegen/testing/test/testdata/provider-config-schema/dotnet/Configstation.Pulumi.Configstation.csproj @@ -10,7 +10,7 @@ logo.png - netcoreapp3.1 + net6.0 enable false diff --git a/pkg/codegen/testing/test/testdata/regress-8403/dotnet/Pulumi.Mongodbatlas.csproj b/pkg/codegen/testing/test/testdata/regress-8403/dotnet/Pulumi.Mongodbatlas.csproj index c4ef888b5eaa..a55ad736c4f1 100644 --- a/pkg/codegen/testing/test/testdata/regress-8403/dotnet/Pulumi.Mongodbatlas.csproj +++ b/pkg/codegen/testing/test/testdata/regress-8403/dotnet/Pulumi.Mongodbatlas.csproj @@ -10,7 +10,7 @@ logo.png - netcoreapp3.1 + net6.0 enable false diff --git a/pkg/codegen/testing/test/testdata/regress-node-8110/dotnet/Pulumi.My8110.csproj b/pkg/codegen/testing/test/testdata/regress-node-8110/dotnet/Pulumi.My8110.csproj index c4ef888b5eaa..a55ad736c4f1 100644 --- a/pkg/codegen/testing/test/testdata/regress-node-8110/dotnet/Pulumi.My8110.csproj +++ b/pkg/codegen/testing/test/testdata/regress-node-8110/dotnet/Pulumi.My8110.csproj @@ -10,7 +10,7 @@ logo.png - netcoreapp3.1 + net6.0 enable false diff --git a/pkg/codegen/testing/test/testdata/replace-on-change/dotnet/Pulumi.Example.csproj b/pkg/codegen/testing/test/testdata/replace-on-change/dotnet/Pulumi.Example.csproj index c4ef888b5eaa..a55ad736c4f1 100644 --- a/pkg/codegen/testing/test/testdata/replace-on-change/dotnet/Pulumi.Example.csproj +++ b/pkg/codegen/testing/test/testdata/replace-on-change/dotnet/Pulumi.Example.csproj @@ -10,7 +10,7 @@ logo.png - netcoreapp3.1 + net6.0 enable false diff --git a/pkg/codegen/testing/test/testdata/resource-args-python-case-insensitive/dotnet/Pulumi.Example.csproj b/pkg/codegen/testing/test/testdata/resource-args-python-case-insensitive/dotnet/Pulumi.Example.csproj index c4ef888b5eaa..a55ad736c4f1 100644 --- a/pkg/codegen/testing/test/testdata/resource-args-python-case-insensitive/dotnet/Pulumi.Example.csproj +++ b/pkg/codegen/testing/test/testdata/resource-args-python-case-insensitive/dotnet/Pulumi.Example.csproj @@ -10,7 +10,7 @@ logo.png - netcoreapp3.1 + net6.0 enable false diff --git a/pkg/codegen/testing/test/testdata/resource-args-python/dotnet/Pulumi.Example.csproj b/pkg/codegen/testing/test/testdata/resource-args-python/dotnet/Pulumi.Example.csproj index c4ef888b5eaa..a55ad736c4f1 100644 --- a/pkg/codegen/testing/test/testdata/resource-args-python/dotnet/Pulumi.Example.csproj +++ b/pkg/codegen/testing/test/testdata/resource-args-python/dotnet/Pulumi.Example.csproj @@ -10,7 +10,7 @@ logo.png - netcoreapp3.1 + net6.0 enable false diff --git a/pkg/codegen/testing/test/testdata/resource-property-overlap/dotnet/Pulumi.Example.csproj b/pkg/codegen/testing/test/testdata/resource-property-overlap/dotnet/Pulumi.Example.csproj index c4ef888b5eaa..a55ad736c4f1 100644 --- a/pkg/codegen/testing/test/testdata/resource-property-overlap/dotnet/Pulumi.Example.csproj +++ b/pkg/codegen/testing/test/testdata/resource-property-overlap/dotnet/Pulumi.Example.csproj @@ -10,7 +10,7 @@ logo.png - netcoreapp3.1 + net6.0 enable false diff --git a/pkg/codegen/testing/test/testdata/secrets/dotnet/Pulumi.Mypkg.csproj b/pkg/codegen/testing/test/testdata/secrets/dotnet/Pulumi.Mypkg.csproj index c4ef888b5eaa..a55ad736c4f1 100644 --- a/pkg/codegen/testing/test/testdata/secrets/dotnet/Pulumi.Mypkg.csproj +++ b/pkg/codegen/testing/test/testdata/secrets/dotnet/Pulumi.Mypkg.csproj @@ -10,7 +10,7 @@ logo.png - netcoreapp3.1 + net6.0 enable false diff --git a/pkg/codegen/testing/test/testdata/simple-enum-schema/dotnet/Pulumi.Plant.csproj b/pkg/codegen/testing/test/testdata/simple-enum-schema/dotnet/Pulumi.Plant.csproj index c4ef888b5eaa..a55ad736c4f1 100644 --- a/pkg/codegen/testing/test/testdata/simple-enum-schema/dotnet/Pulumi.Plant.csproj +++ b/pkg/codegen/testing/test/testdata/simple-enum-schema/dotnet/Pulumi.Plant.csproj @@ -10,7 +10,7 @@ logo.png - netcoreapp3.1 + net6.0 enable false diff --git a/pkg/codegen/testing/test/testdata/simple-methods-schema-single-value-returns/dotnet/Pulumi.Example.csproj b/pkg/codegen/testing/test/testdata/simple-methods-schema-single-value-returns/dotnet/Pulumi.Example.csproj index c4ef888b5eaa..a55ad736c4f1 100644 --- a/pkg/codegen/testing/test/testdata/simple-methods-schema-single-value-returns/dotnet/Pulumi.Example.csproj +++ b/pkg/codegen/testing/test/testdata/simple-methods-schema-single-value-returns/dotnet/Pulumi.Example.csproj @@ -10,7 +10,7 @@ logo.png - netcoreapp3.1 + net6.0 enable false diff --git a/pkg/codegen/testing/test/testdata/simple-methods-schema/dotnet/Pulumi.Example.csproj b/pkg/codegen/testing/test/testdata/simple-methods-schema/dotnet/Pulumi.Example.csproj index c92e13e6f62d..65dda3c4d9c9 100644 --- a/pkg/codegen/testing/test/testdata/simple-methods-schema/dotnet/Pulumi.Example.csproj +++ b/pkg/codegen/testing/test/testdata/simple-methods-schema/dotnet/Pulumi.Example.csproj @@ -10,7 +10,7 @@ logo.png - netcoreapp3.1 + net6.0 enable false diff --git a/pkg/codegen/testing/test/testdata/simple-plain-schema-with-root-package/dotnet/Pulumi.Example.csproj b/pkg/codegen/testing/test/testdata/simple-plain-schema-with-root-package/dotnet/Pulumi.Example.csproj index c4ef888b5eaa..a55ad736c4f1 100644 --- a/pkg/codegen/testing/test/testdata/simple-plain-schema-with-root-package/dotnet/Pulumi.Example.csproj +++ b/pkg/codegen/testing/test/testdata/simple-plain-schema-with-root-package/dotnet/Pulumi.Example.csproj @@ -10,7 +10,7 @@ logo.png - netcoreapp3.1 + net6.0 enable false diff --git a/pkg/codegen/testing/test/testdata/simple-plain-schema/dotnet/Pulumi.Example.csproj b/pkg/codegen/testing/test/testdata/simple-plain-schema/dotnet/Pulumi.Example.csproj index c4ef888b5eaa..a55ad736c4f1 100644 --- a/pkg/codegen/testing/test/testdata/simple-plain-schema/dotnet/Pulumi.Example.csproj +++ b/pkg/codegen/testing/test/testdata/simple-plain-schema/dotnet/Pulumi.Example.csproj @@ -10,7 +10,7 @@ logo.png - netcoreapp3.1 + net6.0 enable false diff --git a/pkg/codegen/testing/test/testdata/simple-resource-schema-custom-pypackage-name/dotnet/Pulumi.Example.csproj b/pkg/codegen/testing/test/testdata/simple-resource-schema-custom-pypackage-name/dotnet/Pulumi.Example.csproj index 8955a6f7283c..48ad1bd61005 100644 --- a/pkg/codegen/testing/test/testdata/simple-resource-schema-custom-pypackage-name/dotnet/Pulumi.Example.csproj +++ b/pkg/codegen/testing/test/testdata/simple-resource-schema-custom-pypackage-name/dotnet/Pulumi.Example.csproj @@ -10,7 +10,7 @@ logo.png - netcoreapp3.1 + net6.0 enable false diff --git a/pkg/codegen/testing/test/testdata/simple-resource-schema/dotnet/Pulumi.Example.csproj b/pkg/codegen/testing/test/testdata/simple-resource-schema/dotnet/Pulumi.Example.csproj index c4ef888b5eaa..a55ad736c4f1 100644 --- a/pkg/codegen/testing/test/testdata/simple-resource-schema/dotnet/Pulumi.Example.csproj +++ b/pkg/codegen/testing/test/testdata/simple-resource-schema/dotnet/Pulumi.Example.csproj @@ -10,7 +10,7 @@ logo.png - netcoreapp3.1 + net6.0 enable false diff --git a/pkg/codegen/testing/test/testdata/simple-yaml-schema/dotnet/Pulumi.Example.csproj b/pkg/codegen/testing/test/testdata/simple-yaml-schema/dotnet/Pulumi.Example.csproj index 8955a6f7283c..48ad1bd61005 100644 --- a/pkg/codegen/testing/test/testdata/simple-yaml-schema/dotnet/Pulumi.Example.csproj +++ b/pkg/codegen/testing/test/testdata/simple-yaml-schema/dotnet/Pulumi.Example.csproj @@ -10,7 +10,7 @@ logo.png - netcoreapp3.1 + net6.0 enable false