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
# Automation in the `/.github/policies` folder is processed by the dotnet-policy-service app,
2
+
# operated by the [microsoft1estools](https://github.com/microsoft1estools) team.
3
+
# See https://github.com/apps/dotnet-policy-service for more info.
4
+
id: breaking-change
5
+
name: breaking-change
6
+
description: When an issue or PR is labeled as a breaking change, add the label that a breaking change doc is needed, and comment with the breaking change process.
7
+
owner:
8
+
resource: repository
9
+
disabled: false
10
+
where:
11
+
configuration:
12
+
resourceManagementConfiguration:
13
+
eventResponderTasks:
14
+
- if:
15
+
- payloadType: Issues
16
+
- labelAdded:
17
+
label: breaking-change
18
+
then:
19
+
- addReply:
20
+
reply: >-
21
+
Refer to the [.NET SDK breaking change guidelines](https://github.com/dotnet/sdk/blob/main/documentation/project-docs/breaking-change-guidelines.md#required-process-for-all-net-sdk-breaking-changes)
22
+
description: Add breaking change doc instructions to issue
23
+
- if:
24
+
- payloadType: Pull_Request
25
+
- labelAdded:
26
+
label: breaking-change
27
+
then:
28
+
- addLabel:
29
+
label: needs-breaking-change-doc-created
30
+
- addReply:
31
+
reply: >-
32
+
Added `needs-breaking-change-doc-created` label because this PR has the `breaking-change` label.
33
+
34
+
35
+
When you commit this breaking change:
36
+
37
+
38
+
1. [ ] Create and link to this PR and the issue a matching issue in the dotnet/docs repo using the [breaking change documentation template](https://aka.ms/dotnet/docs/new-breaking-change-issue), then remove this `needs-breaking-change-doc-created` label.
39
+
40
+
2. [ ] Ask a committer to mail the `.NET SDK Breaking Change Notification` email list.
41
+
42
+
43
+
You can refer to the [.NET SDK breaking change guidelines](https://github.com/dotnet/sdk/blob/main/documentation/project-docs/breaking-change-guidelines.md)
44
+
description: Add breaking change instructions to PR.
Copy file name to clipboardExpand all lines: docs/Available-templates-for-dotnet-new.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ Below is a list of selected NuGet.org templates which are available for use with
24
24
| Name | Quick Install |
25
25
|----------|:--------------|
26
26
|[.NET Boxed](https://github.com/Dotnet-Boxed/Templates)|`dotnet new install "Boxed.Templates"`|
27
-
|[Auth0 Templates](https://github.com/auth0/auth0-dotnet-templates)|`dotnet new install Auth0.Templates::2.0.0"`|
27
+
|[Auth0 Templates](https://github.com/auth0/auth0-dotnet-templates)|`dotnet new install Auth0.Templates`|
28
28
|[AWS Lambda .NET Core Templates](https://github.com/aws/aws-lambda-dotnet/tree/master/Blueprints)|`dotnet new install "Amazon.Lambda.Templates"`|
29
29
|[Avalonia UI Templates](https://github.com/AvaloniaUI/Avalonia) - Avalonia is a framework for creating cross platform UI |`dotnet new install "Avalonia.Templates"`|
30
30
|[Blazor](http://blazor.net) - Full stack web development with C# and WebAssembly |`dotnet new install "Microsoft.AspNetCore.Blazor.Templates::3.0.0-*"`|
Copy file name to clipboardExpand all lines: docs/Binding-and-project-context-evaluation.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -84,7 +84,7 @@ Example - binds `DefaultNamespace` symbol to `RootNamespace` of the project:
84
84
85
85
Visual Studio supports binding to host parameters, environment variables and MSBuild properties.
86
86
In addition to that, there is additional `context` source supporting:
87
-
-`context:cratesolutiondirectory` - indicates whether a solution directory is to be created as a result of project creation (Place solution and project in same directory is UNCHECKED in NPD).
87
+
-`context:createsolutiondirectory` - indicates whether a solution directory is to be created as a result of project creation (Place solution and project in same directory is UNCHECKED in NPD).
88
88
-`context:isexclusive` - indicates whether the template instantiation is a result of a new project being created (true) vs result of adding to an existing solution (false).
89
89
-`context:solutionname` - the name of the solution, which may be different from the project name.
0 commit comments