From d99199244c9ac38d2e5f5a319349875186d30940 Mon Sep 17 00:00:00 2001 From: Brandon Minnick <13558917+brminnick@users.noreply.github.com> Date: Sun, 13 Aug 2023 11:10:34 -0700 Subject: [PATCH] `global.json`: Change `"rollForward": "latestMajor",` -> `"rollForward": "latestFeature"`. (#1338) Update global.json --- CONTRIBUTING.md | 7 +++++-- global.json | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2365f2012..eae3db033 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -36,13 +36,16 @@ Please see our [Code of Conduct](https://dotnetfoundation.org/code-of-conduct). As should be clear by now: we assume everyone tries to do their best, everyone should be treated with respect and equally. -In the unfortunate event that doesn't happen, please feel free to report it to any of the team members or reach out to [Gerald](maillo:gerald.versluis@microsoft.com) directly. +In the unfortunate event that doesn't happen, please feel free to report it to any of the team members or reach out to [Gerald](mailto:gerald.versluis@microsoft.com) directly. We will take appropriate actions and measures if necessary. ## Prerequisites -You will need to complete a Contribution License Agreement before any pull request can be accepted. Complete the CLA at https://cla.dotnetfoundation.org/. This will also be triggered whenever you open a PR and the link should guide you through it. +1. Install latest stable [.NET SDK](https://dotnet.microsoft.com/en-us/download) +1. Install .NET MAUI workloads (we recommend using Visual Studio installer) + +> You will need to complete a Contribution License Agreement before any pull request can be accepted. Complete the CLA at https://cla.dotnetfoundation.org/. This will also be triggered whenever you open a PR and the link should guide you through it. ## Reporting a bug diff --git a/global.json b/global.json index 6c8b056ba..ccd059ad5 100644 --- a/global.json +++ b/global.json @@ -1,7 +1,7 @@ { "sdk": { "version": "7.0.200", - "rollForward": "latestMajor", + "rollForward": "latestFeature", "allowPrerelease": false } }