Skip to content

Commit 74cac77

Browse files
Normalise trailing whitespace and line endings everywhere
1 parent c425137 commit 74cac77

File tree

174 files changed

+782
-783
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

174 files changed

+782
-783
lines changed

.gitattributes

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
*.png binary
1414
*.gif binary
1515

16-
*.cs text=auto diff=csharp
16+
*.cs text=auto diff=csharp
1717
*.vb text=auto
1818
*.resx text=auto
1919
*.c text=auto
@@ -48,4 +48,4 @@
4848
*.fsproj text=auto
4949
*.dbproj text=auto
5050
*.sln text=auto eol=crlf
51-
*.sh eol=lf
51+
*.sh eol=lf

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ os:
1717
- osx
1818
osx_image: xcode7.1
1919
script:
20-
- ./build.sh verify
20+
- ./build.sh verify

NuGet.master.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
<add key="AspNetVNext" value="https://www.myget.org/f/aspnetmaster/api/v3/index.json" />
66
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
77
</packageSources>
8-
</configuration>
8+
</configuration>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ Note that to run the React example, you'll also need to run `webpack` from the `
9191
```
9292

9393
4. Where applicable, build the project. For example, the Angular example uses Gulp, so you'll need to execute `gulp`, whereas the React example uses Webpack, so you'll need to execute `webpack`. The ES2015 example does not need to be built.
94-
94+
9595
If you don't already have it, install the applicable build tool first (e.g., `npm install -g webpack`).
9696

9797
5. Run the project (and wait until it displays the message `Application started`)

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ build_script:
44
- build.cmd verify
55
clone_depth: 1
66
test: off
7-
deploy: off
7+
deploy: off

samples/angular/MusicStore/Apis/ArtistsApiController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ public async Task<ActionResult> Lookup()
2727
return Json(artists);
2828
}
2929
}
30-
}
30+
}

samples/angular/MusicStore/Apis/GenresApiController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,4 @@ public async Task<ActionResult> GenreAlbums(int genreId)
6767
return Json(albums);
6868
}
6969
}
70-
}
70+
}

samples/angular/MusicStore/Apis/Models/AccountViewModels.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,4 @@ public class RegisterViewModel
6060
[Compare("Password", ErrorMessage = "The password and confirmation password do not match.")]
6161
public string ConfirmPassword { get; set; }
6262
}
63-
}
63+
}

samples/angular/MusicStore/Apis/Models/Album.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ public class Album
77
{
88
public Album()
99
{
10-
// TODO: Temporary hack to populate the orderdetails until EF does this automatically.
10+
// TODO: Temporary hack to populate the orderdetails until EF does this automatically.
1111
OrderDetails = new List<OrderDetail>();
1212
}
1313

@@ -37,4 +37,4 @@ public Album()
3737

3838
public virtual ICollection<OrderDetail> OrderDetails { get; set; }
3939
}
40-
}
40+
}

samples/angular/MusicStore/Apis/Models/Artist.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ public class Artist
99
[Required]
1010
public string Name { get; set; }
1111
}
12-
}
12+
}

0 commit comments

Comments
 (0)