Update PULL_REQUEST_TEMPLATE.md
This commit is contained in:
Родитель
9069950c1e
Коммит
6a76d4d818
|
@ -14,12 +14,22 @@ List all API changes here (or just put None), example:
|
||||||
|
|
||||||
Added:
|
Added:
|
||||||
|
|
||||||
- string - string Class.Property { get; set; }
|
- `string Class.Property { get; set; }`
|
||||||
- void Class.Method();
|
- `void Class.Method();`
|
||||||
|
|
||||||
Changed:
|
Changed:
|
||||||
|
|
||||||
- object Cell.OldPropertyName => object Cell.NewPropertyName
|
- `object Cell.OldPropertyName` => `object Cell.NewPropertyName`
|
||||||
|
|
||||||
|
If there is an entirely new API, then you can use a more verbose style:
|
||||||
|
|
||||||
|
```csharp
|
||||||
|
public static class NewClass {
|
||||||
|
public static int SomeProperty { get; set; }
|
||||||
|
public static void SomeMethod(string value);
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
### Behavioral Changes ###
|
### Behavioral Changes ###
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче