From bbd305d9d7ced7a9635e864072a9f697b0152361 Mon Sep 17 00:00:00 2001 From: Naren Soni Date: Wed, 31 Aug 2022 19:52:42 +0530 Subject: [PATCH] Adding roll forward configuration for net sdk package (#587) --- common.props | 2 +- .../runtimeconfig.template.json | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 src/Microsoft.NET.Sdk.Functions.Generator/runtimeconfig.template.json diff --git a/common.props b/common.props index 9085d1b..7838ce5 100644 --- a/common.props +++ b/common.props @@ -4,7 +4,7 @@ 4 1 - 2 + 3 diff --git a/src/Microsoft.NET.Sdk.Functions.Generator/runtimeconfig.template.json b/src/Microsoft.NET.Sdk.Functions.Generator/runtimeconfig.template.json new file mode 100644 index 0000000..1916753 --- /dev/null +++ b/src/Microsoft.NET.Sdk.Functions.Generator/runtimeconfig.template.json @@ -0,0 +1,3 @@ +{ + "rollForward": "Major" +} \ No newline at end of file