|
| 1 | +--- |
| 2 | +title: Change waves |
| 3 | +description: Learn how to enable or disable features in MSBuild that are potentially disruptive. |
| 4 | +ms.date: 11/10/2020 |
| 5 | +ms.topic: conceptual |
| 6 | +helpviewer_keywords: |
| 7 | +- Change waves [MSBuild] |
| 8 | +- MSBuildDisableFeaturesFromVersion environment variable |
| 9 | +author: ghogen |
| 10 | +ms.author: ghogen |
| 11 | +manager: jillfra |
| 12 | +monikerRange: ">=vs-2019" |
| 13 | +ms.workload: |
| 14 | +- multiple |
| 15 | +--- |
| 16 | +# Change waves |
| 17 | + |
| 18 | +A *change wave* is a set of behavior changes in MSBuild that you can opt out of by specifying a particular flag as an environment variable. The purpose of this is to warn you of potentially disruptive changes so that you have flexibility in adapting to these changes before they become standard functionality. All the features in a specific change wave can only be enabled or disabled together, not individually. |
| 19 | + |
| 20 | +When you upgrade to a new version of MSBuild, changes that are potentially breaking are enabled by default, but if a feature affects your build negatively, you can easily disable that wave of changes. Each change wave is identified by an MSBuild version number (for example, 16.8), but setting the change wave only controls certain features that have the potential to affect the build process, not all the changes in that MSBuild version. A list of the features in each change wave appears [later in this article](#change-waves-and-associated-features). Disabling a change wave also disables change waves of higher versions. |
| 21 | + |
| 22 | +## Opt out of change wave features |
| 23 | + |
| 24 | +To disable the features in a change wave, set the environment variable `MSBuildDisableFeaturesFromVersion` to the change wave (or MSBuild version) that contains the feature you want **disabled**. This is the version of MSBuild that the features were developed for. See the mapping of change waves to features below. |
| 25 | + |
| 26 | +### MSBuildDisableFeaturesFromVersion Values |
| 27 | + |
| 28 | +You will receive a warning and/or default to a specific wave if you don't set `MSBuildDisableFeaturesFromVersion` to a valid change wave. The following table shows the possible settings: |
| 29 | + |
| 30 | +| `MSBuildDisableFeaturesFromVersion` Value | Result | Receive Warning? | |
| 31 | +| :------------- | :---------- | :----------: | |
| 32 | +| Unset | Enable all change waves, meaning all features behind each change wave are enabled. | No | |
| 33 | +| Any valid and current change wave (for example, `16.8`) | Disable all features behind change wave `16.8` **and higher**. | No | |
| 34 | +| Invalid Value (for example, `16.9` when valid waves are `16.8` and `16.10`)| Default to the closest valid value (ascending). For example, setting `16.9` will default you to `16.10`. | No | |
| 35 | +| Out of Rotation (for example, `17.1` when the highest wave is `17.0`) | Clamp to the closest valid value. For example, `17.1` clamps to `17.0`, and `16.5` clamps to `16.8` | Yes | |
| 36 | +| Invalid Format (for example, `16x8`, `17_0`, `garbage`) | Enable all change waves, meaning all features behind each change wave are enabled. | Yes | |
| 37 | + |
| 38 | +## Change waves and associated features |
| 39 | + |
| 40 | +The links in the list below go to the GitHub PR for the feature. |
| 41 | + |
| 42 | +### 16.8 |
| 43 | + |
| 44 | +- [Enable NoWarn](https://github.com/dotnet/msbuild/pull/5671) |
| 45 | +- [Truncate Target/Task skipped log messages to 1024 chars](https://github.com/dotnet/msbuild/pull/5553) |
| 46 | +- [Don't expand full drive globs with false condition](https://github.com/dotnet/msbuild/pull/5669) |
| 47 | + |
| 48 | +### 16.10 |
| 49 | + |
| 50 | +- [Error when a property expansion in a condition has whitespace](https://github.com/dotnet/msbuild/pull/5672) |
| 51 | + |
| 52 | +### 17.0 |
| 53 | + |
| 54 | +There are no entries yet in this change wave. |
| 55 | + |
| 56 | +## Change waves that are out of rotation |
| 57 | + |
| 58 | +There are no out of rotation change waves at this time. |
| 59 | + |
| 60 | +## FAQ |
| 61 | + |
| 62 | +**Why target every other release for rotating change waves out?** |
| 63 | + |
| 64 | +We believe this is enough time to have discussions with those affected and assist with adapting to the changes. |
| 65 | + |
| 66 | +**Why an environment variable and not a project property?** |
| 67 | + |
| 68 | +There are scenarios where we want to place a feature under a change wave before MSBuild has loaded the project. For that reason, change waves require using environment variables. |
| 69 | + |
| 70 | +**Why opt-out over opt-in?** |
| 71 | + |
| 72 | +Opt-out is a better approach for us, otherwise we'd likely get limited feedback when a feature impacts customer builds. |
| 73 | + |
| 74 | +## See also |
| 75 | + |
| 76 | +- [MSBuild](msbuild.md) |
| 77 | +- [What's new in MSBuild 16](whats-new-msbuild-16-0.md) |
0 commit comments