Skip to content

Commit 7cf401f

Browse files
committed
Add .editorconfig and remove now-excluded files
1 parent cbfed00 commit 7cf401f

File tree

10 files changed

+21
-139
lines changed

10 files changed

+21
-139
lines changed

.editorconfig

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = crlf
6+
indent_size = 2
7+
indent_style = space
8+
insert_final_newline = true
9+
10+
[*.{cs,cshtml,html,razor}]
11+
indent_size = 4
12+
13+
[*.cs]
14+
dotnet_sort_system_directives_first = true
15+
16+
[*.md]
17+
max_line_length = off

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto eol=lf

fundamentals/static-files/WebRoot/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{
33
Args = args,
44
// Examine Hosting environment: logging value
5-
EnvironmentName = Environments.Staging,
5+
EnvironmentName = Environments.Staging,
66
// Look for static files in "wwwroot-custom"
77
WebRootPath = "wwwroot-custom"
88
});

fundamentals/static-files/WebRoot/Properties/launchSettings.json

Lines changed: 0 additions & 30 deletions
This file was deleted.

fundamentals/static-files/WebRoot/WebRoot.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<Content Remove="wwwroot\**" />
10+
<Content Remove="wwwroot\**" />
1111
</ItemGroup>
1212

1313
<ItemGroup>

fundamentals/static-files/WebRoot/WebRoot.sln

Lines changed: 0 additions & 25 deletions
This file was deleted.

signalr/hubs/samples/6.x/SignalRHubsSample/wwwroot/chat.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ document.addEventListener("DOMContentLoaded", () => {
3030
console.log(err);
3131
setTimeout(start, 5000);
3232
}
33-
};
33+
}
3434

3535
connection.onclose(async () => {
3636
await start();

tutorials/signalr-typescript-webpack/samples/6.x/SignalRWebpack/Properties/launchSettings.json

Lines changed: 0 additions & 28 deletions
This file was deleted.

tutorials/signalr-typescript-webpack/samples/6.x/SignalRWebpack/SignalRWebpack.sln

Lines changed: 0 additions & 25 deletions
This file was deleted.

tutorials/signalr-typescript-webpack/samples/6.x/SignalRWebpack/src/index.js

Lines changed: 0 additions & 28 deletions
This file was deleted.

0 commit comments

Comments
 (0)