You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -23,7 +23,7 @@ Or omit the version from the SDK attribute and specify it in the version in `glo
23
23
```json
24
24
{
25
25
"msbuild-sdks": {
26
-
"MSBuild.SDK.SystemWeb.RazorLibrary" : "4.0.82"
26
+
"MSBuild.SDK.SystemWeb.RazorLibrary" : "4.0.87"
27
27
}
28
28
}
29
29
```
@@ -43,7 +43,7 @@ For more information see
43
43
44
44
| Property | Default value | Description |
45
45
| -------- | ------------- | ----------- |
46
-
|`ExcludeDefaultSDKPackages`| false | Do not include the default packages `Microsoft.Net.Compilers.Toolset` and `Microsoft.CodeDom.Providers.DotNetCompilerPlatform`|
46
+
|`ExcludeSDKDefaultPackages`| false | Do not include the default packages `Microsoft.Net.Compilers.Toolset` and `Microsoft.CodeDom.Providers.DotNetCompilerPlatform`|
47
47
|`ApplySDKDefaultPackageVersions`| true*| Apply default version numbers to packages unless using a Central Package Management system |
48
48
49
49
*Version numbers are not applied if you are using `Microsoft.Build.CentralPackageVersions` version 2.1.1 or higher. Remember to include the packages in your central package versions file.
@@ -60,7 +60,7 @@ For more information see
60
60
### Deprecated Properties
61
61
| Property | Default value | Description |
62
62
| -------- | ------------- | ----------- |
63
-
|`ExcludeDefaultRazorPackages`| false | Use `ExcludeDefaultSDKPackages` instead |
63
+
|`ExcludeDefaultRazorPackages`| false | Use `ExcludeSDKDefaultPackages` instead |
Copy file name to clipboardExpand all lines: docs/SDK.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ When using an MSBuild Project SDK obtained via NuGet (such as the SDKs in this r
13
13
Either append the version (as shown in the nuget shield above) to the package name:
14
14
15
15
```xml
16
-
<ProjectSdk="MSBuild.SDK.SystemWeb/4.0.83">
16
+
<ProjectSdk="MSBuild.SDK.SystemWeb/4.0.87">
17
17
...
18
18
```
19
19
@@ -22,7 +22,7 @@ Or omit the version from the SDK attribute and specify it in the version in `glo
22
22
```json
23
23
{
24
24
"msbuild-sdks": {
25
-
"MSBuild.SDK.SystemWeb" : "4.0.83"
25
+
"MSBuild.SDK.SystemWeb" : "4.0.87"
26
26
}
27
27
}
28
28
```
@@ -35,7 +35,7 @@ You can also use the [templates](Templates.md) to easily create new projects.
35
35
36
36
| Property | Default value | Description |
37
37
| -------- | ------------- | ----------- |
38
-
|`ExcludeDefaultSDKPackages`| false | Do not include the default packages `Microsoft.Net.Compilers.Toolset` and `Microsoft.CodeDom.Providers.DotNetCompilerPlatform`|
38
+
|`ExcludeSDKDefaultPackages`| false | Do not include the default packages `Microsoft.Net.Compilers.Toolset` and `Microsoft.CodeDom.Providers.DotNetCompilerPlatform`|
39
39
|`ApplySDKDefaultPackageVersions`| true*| Apply default version numbers to packages unless using a Central Package Management system |
40
40
|`GeneratedBindingRedirectsAction`| None | Set the desired default behavior of what to do with SuggestedBindingRedirects if not yet set.<br>See [automatically generated binding redirects](Binding_Redirects/Autogenerating-Binding-Redirects.md)<br><ul><li>`None` - Do nothing except show the warning</li><li>`Preview` - Creates new Web.BindingRedirects.config file showing proposed changes</li><li>`Overwrite` - Updates the $(AppConfig) aka web.config in the project root</li></ul> |
41
41
@@ -54,7 +54,7 @@ You can also use the [templates](Templates.md) to easily create new projects.
54
54
### Deprecated Properties
55
55
| Property | Default value | Description |
56
56
| -------- | ------------- | ----------- |
57
-
|`ExcludeASPNetCompilers`| false | Use `ExcludeDefaultSDKPackages` instead |
57
+
|`ExcludeASPNetCompilers`| false | Use `ExcludeSDKDefaultPackages` instead |
58
58
|`OverwriteAppConfigWithBindingRedirects`| false | If set, will set `GeneratedBindingRedirectsAction` to `Overwrite` then any will be copied into your web.config file. |
0 commit comments