We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72ad631 commit bc4c84bCopy full SHA for bc4c84b
1 file changed
dotnet-watch.json
@@ -1,15 +1,34 @@
1
{
2
- "watch": {
3
- "extensions": [
4
- ".cs",
5
- ".razor",
6
- ".csproj"
7
- ],
8
- "include": [
9
- "**/*.csproj"
10
11
- "runOnChanges": {
12
- "**/*.csproj": "restart"
13
- }
+ "watch": {
+ "extensions": [
+ ".cs",
+ ".razor",
+ ".csproj",
+ ".cshtml",
+ ".json"
+ ],
+ "include": [
+ "**/*.cs",
+ "**/*.razor",
+ "**/*.cshtml",
14
+ "**/*.csproj",
15
+ "appsettings*.json",
16
+ "Properties/launchSettings.json",
17
+ "wwwroot/**/*"
18
19
+ "exclude": [
20
+ "**/bin/**",
21
+ "**/obj/**",
22
+ ".git/**"
23
24
+ "runOnChanges": {
25
+ "**/*.cs": "restart",
26
+ "**/*.razor": "restart",
27
+ "**/*.cshtml": "restart",
28
+ "**/*.csproj": "restart",
29
+ "appsettings*.json": "restart",
30
+ "Properties/launchSettings.json": "restart",
31
+ "wwwroot/**/*": "restart"
32
}
33
+ }
34
0 commit comments