Permalink
Please sign in to comment.
Browse files
Normalise trailing whitespace and line endings everywhere
- Loading branch information...
Showing
with
782 additions
and 783 deletions.
- +2 −2 .gitattributes
- +1 −1 .travis.yml
- +1 −1 NuGet.master.config
- +1 −1 README.md
- +1 −1 appveyor.yml
- +1 −1 samples/angular/MusicStore/Apis/ArtistsApiController.cs
- +1 −1 samples/angular/MusicStore/Apis/GenresApiController.cs
- +1 −1 samples/angular/MusicStore/Apis/Models/AccountViewModels.cs
- +2 −2 samples/angular/MusicStore/Apis/Models/Album.cs
- +1 −1 samples/angular/MusicStore/Apis/Models/Artist.cs
- +1 −1 samples/angular/MusicStore/Apis/Models/CartItem.cs
- +1 −1 samples/angular/MusicStore/Apis/Models/Genre.cs
- +1 −1 samples/angular/MusicStore/Apis/Models/MusicStoreContext.cs
- +1 −1 samples/angular/MusicStore/Apis/Models/Order.cs
- +1 −1 samples/angular/MusicStore/Apis/Models/OrderDetail.cs
- +5 −5 samples/angular/MusicStore/Apis/Models/SampleData.cs
- +3 −3 samples/angular/MusicStore/Apis/Models/SentimentAnalysis.cs
- +3 −3 samples/angular/MusicStore/Apis/Models/ShoppingCart.cs
- +1 −1 samples/angular/MusicStore/Infrastructure/NoCacheAttribute.cs
- +1 −1 samples/angular/MusicStore/Infrastructure/PagedList.cs
- +1 −1 samples/angular/MusicStore/MusicStore.xproj
- +4 −4 samples/angular/MusicStore/Startup.cs
- +26 −26 samples/angular/MusicStore/Views/Home/Index.cshtml
- +6 −6 samples/angular/MusicStore/Views/Shared/Error.cshtml
- +40 −40 samples/angular/MusicStore/Views/Shared/_Layout.cshtml
- +4 −4 samples/angular/MusicStore/Views/_ViewImports.cshtml
- +3 −3 samples/angular/MusicStore/Views/_ViewStart.cshtml
- +1 −1 samples/angular/MusicStore/project.json
- +1 −1 samples/angular/MusicStore/wwwroot/ng-app/components/admin/admin-home/admin-home.ts
- +3 −3 ...les/angular/MusicStore/wwwroot/ng-app/components/admin/album-delete-prompt/album-delete-prompt.ts
- +1 −1 samples/angular/MusicStore/wwwroot/ng-app/components/admin/album-details/album-details.html
- +1 −1 samples/angular/MusicStore/wwwroot/ng-app/components/admin/album-details/album-details.ts
- +5 −5 samples/angular/MusicStore/wwwroot/ng-app/components/admin/album-edit/album-edit.html
- +4 −4 samples/angular/MusicStore/wwwroot/ng-app/components/admin/album-edit/album-edit.ts
- +1 −1 samples/angular/MusicStore/wwwroot/ng-app/components/admin/albums-list/albums-list.html
- +7 −7 samples/angular/MusicStore/wwwroot/ng-app/components/admin/albums-list/albums-list.ts
- +1 −1 samples/angular/MusicStore/wwwroot/ng-app/components/admin/form-field/form-field.ts
- +3 −3 samples/angular/MusicStore/wwwroot/ng-app/components/public/album-details/album-details.html
- +1 −1 samples/angular/MusicStore/wwwroot/ng-app/components/public/album-details/album-details.ts
- +1 −1 samples/angular/MusicStore/wwwroot/ng-app/components/public/genre-contents/genre-contents.ts
- +1 −1 samples/angular/MusicStore/wwwroot/ng-app/components/public/genres-list/genres-list.ts
- +2 −2 samples/angular/MusicStore/wwwroot/ng-app/components/public/home/home.ts
- +9 −9 samples/angular/MusicStore/wwwroot/web.config
- +1 −1 samples/misc/ES2015Transpilation/ES2015Transpilation.xproj
- +4 −4 samples/misc/ES2015Transpilation/Startup.cs
- +6 −6 samples/misc/ES2015Transpilation/Views/Home/Index.cshtml
- +6 −6 samples/misc/ES2015Transpilation/Views/Shared/Error.cshtml
- +11 −11 samples/misc/ES2015Transpilation/Views/Shared/_Layout.cshtml
- +2 −2 samples/misc/ES2015Transpilation/Views/_ViewImports.cshtml
- +3 −3 samples/misc/ES2015Transpilation/Views/_ViewStart.cshtml
- +1 −1 samples/misc/ES2015Transpilation/project.json
- +1 −1 samples/misc/ES2015Transpilation/transpilation.js
- +9 −9 samples/misc/ES2015Transpilation/wwwroot/web.config
- +1 −1 samples/misc/Webpack/Startup.cs
- +10 −10 samples/misc/Webpack/Views/Home/Index.cshtml
- +6 −6 samples/misc/Webpack/Views/Shared/Error.cshtml
- +14 −14 samples/misc/Webpack/Views/Shared/_Layout.cshtml
- +2 −2 samples/misc/Webpack/Views/_ViewImports.cshtml
- +3 −3 samples/misc/Webpack/Views/_ViewStart.cshtml
- +1 −1 samples/misc/Webpack/webpack.config.js
- +1 −1 samples/misc/Webpack/webpack.config.prod.js
- +9 −9 samples/misc/Webpack/wwwroot/web.config
- +1 −1 samples/react/MusicStore/Apis/ArtistsApiController.cs
- +1 −1 samples/react/MusicStore/Apis/GenresApiController.cs
- +1 −1 samples/react/MusicStore/Apis/Models/AccountViewModels.cs
- +2 −2 samples/react/MusicStore/Apis/Models/Album.cs
- +1 −1 samples/react/MusicStore/Apis/Models/Artist.cs
- +1 −1 samples/react/MusicStore/Apis/Models/CartItem.cs
- +1 −1 samples/react/MusicStore/Apis/Models/Genre.cs
- +1 −1 samples/react/MusicStore/Apis/Models/MusicStoreContext.cs
- +1 −1 samples/react/MusicStore/Apis/Models/Order.cs
- +1 −1 samples/react/MusicStore/Apis/Models/OrderDetail.cs
- +5 −5 samples/react/MusicStore/Apis/Models/SampleData.cs
- +3 −3 samples/react/MusicStore/Apis/Models/ShoppingCart.cs
- +1 −1 samples/react/MusicStore/Infrastructure/NoCacheAttribute.cs
- +1 −1 samples/react/MusicStore/Infrastructure/PagedList.cs
- +1 −1 samples/react/MusicStore/ReactApp/boot-server.tsx
- +3 −3 samples/react/MusicStore/ReactApp/components/NavMenu.tsx
- +2 −2 samples/react/MusicStore/ReactApp/components/public/AlbumDetails.tsx
- +1 −1 samples/react/MusicStore/ReactApp/components/public/AlbumTile.tsx
- +1 −1 samples/react/MusicStore/ReactApp/components/public/GenreDetails.tsx
- +3 −3 samples/react/MusicStore/ReactApp/configureStore.ts
- +2 −2 samples/react/MusicStore/ReactApp/store/AlbumDetails.ts
- +1 −1 samples/react/MusicStore/ReactApp/store/FeaturedAlbums.ts
- +3 −3 samples/react/MusicStore/ReactApp/store/GenreDetails.ts
- +1 −1 samples/react/MusicStore/ReactApp/store/GenreList.ts
- +1 −1 samples/react/MusicStore/ReactApp/store/index.ts
- +4 −4 samples/react/MusicStore/Startup.cs
- +11 −11 samples/react/MusicStore/Views/Home/Index.cshtml
- +6 −6 samples/react/MusicStore/Views/Shared/Error.cshtml
- +12 −12 samples/react/MusicStore/Views/Shared/_Layout.cshtml
- +3 −3 samples/react/MusicStore/Views/_ViewImports.cshtml
- +3 −3 samples/react/MusicStore/Views/_ViewStart.cshtml
- +9 −9 samples/react/MusicStore/wwwroot/web.config
- +2 −2 samples/react/ReactGrid/Controllers/PeopleApiController.cs
- +1 −1 samples/react/ReactGrid/ReactApp/boot-server.jsx
- +2 −2 samples/react/ReactGrid/ReactApp/components/CustomPager.jsx
- +5 −5 samples/react/ReactGrid/ReactApp/components/PersonEditor.jsx
- +1 −1 samples/react/ReactGrid/ReactApp/components/ReactApp.jsx
- +1 −1 samples/react/ReactGrid/ReactGrid.xproj
- +1 −1 samples/react/ReactGrid/Startup.cs
- +6 −6 samples/react/ReactGrid/Views/Home/Index.cshtml
- +6 −6 samples/react/ReactGrid/Views/Shared/Error.cshtml
- +14 −14 samples/react/ReactGrid/Views/Shared/_Layout.cshtml
- +3 −3 samples/react/ReactGrid/Views/_ViewImports.cshtml
- +3 −3 samples/react/ReactGrid/Views/_ViewStart.cshtml
- +1 −1 samples/react/ReactGrid/project.json
- +9 −9 samples/react/ReactGrid/wwwroot/web.config
- +4 −4 src/Microsoft.AspNet.AngularServices/AngularPrerenderTagHelper.cs
- +2 −2 src/Microsoft.AspNet.AngularServices/AngularRenderer.cs
- +1 −1 src/Microsoft.AspNet.AngularServices/Content/Node/angular-rendering.js
- +1 −1 src/Microsoft.AspNet.AngularServices/Microsoft.AspNet.AngularServices.xproj
- +2 −2 src/Microsoft.AspNet.AngularServices/PrimeCacheHelper.cs
- +1 −1 src/Microsoft.AspNet.AngularServices/npm/build.js
- +10 −10 src/Microsoft.AspNet.AngularServices/npm/readme.md
- +3 −3 src/Microsoft.AspNet.AngularServices/npm/src/CachePrimedHttp.ts
- +4 −4 src/Microsoft.AspNet.AngularServices/npm/src/Validation.ts
- +3 −3 src/Microsoft.AspNet.NodeServices/Configuration.cs
- +4 −4 src/Microsoft.AspNet.NodeServices/Content/Node/entrypoint-http.js
- +1 −1 src/Microsoft.AspNet.NodeServices/Content/Node/entrypoint-stream.js
- +13 −13 src/Microsoft.AspNet.NodeServices/HostingModels/HttpNodeInstance.cs
- +7 −7 src/Microsoft.AspNet.NodeServices/HostingModels/InputOutputStreamNodeInstance.cs
- +6 −6 src/Microsoft.AspNet.NodeServices/HostingModels/OutOfProcessNodeInstance.cs
- +2 −2 src/Microsoft.AspNet.NodeServices/INodeInstance.cs
- +1 −1 src/Microsoft.AspNet.NodeServices/Microsoft.AspNet.NodeServices.xproj
- +1 −1 src/Microsoft.AspNet.NodeServices/NodeHostingModel.cs
- +3 −3 src/Microsoft.AspNet.NodeServices/Util/EmbeddedResourceReader.cs
- +1 −1 src/Microsoft.AspNet.NodeServices/Util/StringAsTempFile.cs
- +1 −1 src/Microsoft.AspNet.ReactServices/Microsoft.AspNet.ReactServices.xproj
- +1 −1 src/Microsoft.AspNet.ReactServices/npm/redux-typed/src/ObjectAssignPolyfill.ts
- +4 −4 src/Microsoft.AspNet.ReactServices/npm/redux-typed/src/StrongProvide.ts
- +9 −9 src/Microsoft.AspNet.SpaServices/Content/Node/prerenderer.js
- +7 −7 src/Microsoft.AspNet.SpaServices/Content/Node/webpack-dev-middleware.js
- +1 −1 src/Microsoft.AspNet.SpaServices/Microsoft.AspNet.SpaServices.xproj
- +6 −6 src/Microsoft.AspNet.SpaServices/Prerendering/PrerenderTagHelper.cs
- +6 −6 src/Microsoft.AspNet.SpaServices/Prerendering/Prerenderer.cs
- +4 −4 src/Microsoft.AspNet.SpaServices/Routing/SpaRouteConstraint.cs
- +3 −3 src/Microsoft.AspNet.SpaServices/Routing/SpaRouteExtensions.cs
- +4 −4 src/Microsoft.AspNet.SpaServices/Webpack/WebpackDevMiddleware.cs
- +3 −3 src/Microsoft.AspNet.SpaServices/npm/domain-task/src/fetch.ts
- +2 −2 src/Microsoft.AspNet.SpaServices/npm/domain-task/src/main.ts
- +1 −1 templates/Angular2Spa/ClientApp/components/app/app.html
- +1 −1 templates/Angular2Spa/ClientApp/components/counter/counter.ts
- +2 −2 templates/Angular2Spa/ClientApp/components/fetch-data/fetch-data.ts
- +1 −1 templates/Angular2Spa/ClientApp/components/home/home.html
- +1 −1 templates/Angular2Spa/ClientApp/components/nav-menu/nav-menu.html
- +3 −3 templates/Angular2Spa/Controllers/SampleDataController.cs
- +2 −2 templates/Angular2Spa/Startup.cs
- +6 −6 templates/Angular2Spa/Views/Shared/Error.cshtml
- +3 −3 templates/Angular2Spa/Views/_ViewImports.cshtml
- +3 −3 templates/Angular2Spa/Views/_ViewStart.cshtml
- +9 −9 templates/Angular2Spa/wwwroot/web.config
- +4 −4 templates/ReactSpa/ClientApp/components/Counter.tsx
- +2 −2 templates/ReactSpa/ClientApp/components/FetchData.tsx
- +1 −1 templates/ReactSpa/ClientApp/components/Home.tsx
- +1 −1 templates/ReactSpa/ClientApp/components/Layout.tsx
- +1 −1 templates/ReactSpa/ClientApp/components/NavMenu.tsx
- +0 −1 templates/ReactSpa/ClientApp/css/site.css
- +3 −3 templates/ReactSpa/Controllers/SampleDataController.cs
- +2 −2 templates/ReactSpa/Startup.cs
- +6 −6 templates/ReactSpa/Views/Shared/Error.cshtml
- +3 −3 templates/ReactSpa/Views/_ViewImports.cshtml
- +3 −3 templates/ReactSpa/Views/_ViewStart.cshtml
- +1 −1 templates/ReactSpa/webpack.config.prod.js
- +9 −9 templates/ReactSpa/wwwroot/web.config
- +7 −7 templates/WebApplicationBasic/Views/Home/About.cshtml
- +17 −17 templates/WebApplicationBasic/Views/Home/Contact.cshtml
- +114 −114 templates/WebApplicationBasic/Views/Home/Index.cshtml
- +6 −6 templates/WebApplicationBasic/Views/Shared/Error.cshtml
- +44 −44 templates/WebApplicationBasic/Views/Shared/_Layout.cshtml
- +2 −2 templates/WebApplicationBasic/Views/_ViewImports.cshtml
- +3 −3 templates/WebApplicationBasic/Views/_ViewStart.cshtml
- +1 −1 templates/WebApplicationBasic/webpack.config.prod.js
- +9 −9 templates/WebApplicationBasic/wwwroot/web.config
| @@ -1,26 +1,26 @@ | ||
| -@{ | ||
| - ViewData["Title"] = "Home Page"; | ||
| -} | ||
| - | ||
| -<cache vary-by="@Context.Request.Path"> | ||
| - <app asp-ng2-prerender-module="wwwroot/ng-app/components/app/app"> | ||
| - Loading... | ||
| - </app> | ||
| -</cache> | ||
| - | ||
| -@section scripts { | ||
| - @await Html.PrimeCache(Url.Action("GenreMenuList", "GenresApi")) | ||
| - @await Html.PrimeCache(Url.Action("MostPopular", "AlbumsApi")) | ||
| - | ||
| - <script src="~/lib/angular2/bundles/angular2-polyfills.js"></script> | ||
| - <script src="~/lib/traceur/bin/traceur-runtime.js"></script> | ||
| - <script src="~/lib/es6-module-loader/dist/es6-module-loader-sans-promises.js"></script> | ||
| - <script src="~/lib/systemjs/dist/system.src.js"></script> | ||
| - <script src="~/system.config.js"></script> | ||
| - <script src="~/lib/rxjs/bundles/Rx.js"></script> | ||
| - <script src="~/lib/angular2/bundles/angular2.dev.js"></script> | ||
| - <script src="~/lib/angular2/bundles/router.dev.js"></script> | ||
| - <script src="~/lib/angular2/bundles/http.dev.js"></script> | ||
| - <script src="~/lib/angular2-aspnet/bundles/angular2-aspnet.js"></script> | ||
| - <script>System.import('./ng-app/components/app/bootstrap');</script> | ||
| -} | ||
| +@{ | ||
| + ViewData["Title"] = "Home Page"; | ||
| +} | ||
| + | ||
| +<cache vary-by="@Context.Request.Path"> | ||
| + <app asp-ng2-prerender-module="wwwroot/ng-app/components/app/app"> | ||
| + Loading... | ||
| + </app> | ||
| +</cache> | ||
| + | ||
| +@section scripts { | ||
| + @await Html.PrimeCache(Url.Action("GenreMenuList", "GenresApi")) | ||
| + @await Html.PrimeCache(Url.Action("MostPopular", "AlbumsApi")) | ||
| + | ||
| + <script src="~/lib/angular2/bundles/angular2-polyfills.js"></script> | ||
| + <script src="~/lib/traceur/bin/traceur-runtime.js"></script> | ||
| + <script src="~/lib/es6-module-loader/dist/es6-module-loader-sans-promises.js"></script> | ||
| + <script src="~/lib/systemjs/dist/system.src.js"></script> | ||
| + <script src="~/system.config.js"></script> | ||
| + <script src="~/lib/rxjs/bundles/Rx.js"></script> | ||
| + <script src="~/lib/angular2/bundles/angular2.dev.js"></script> | ||
| + <script src="~/lib/angular2/bundles/router.dev.js"></script> | ||
| + <script src="~/lib/angular2/bundles/http.dev.js"></script> | ||
| + <script src="~/lib/angular2-aspnet/bundles/angular2-aspnet.js"></script> | ||
| + <script>System.import('./ng-app/components/app/bootstrap');</script> | ||
| +} |
| @@ -1,6 +1,6 @@ | ||
| -@{ | ||
| - ViewData["Title"] = "Error"; | ||
| -} | ||
| - | ||
| -<h1 class="text-danger">Error.</h1> | ||
| -<h2 class="text-danger">An error occurred while processing your request.</h2> | ||
| +@{ | ||
| + ViewData["Title"] = "Error"; | ||
| +} | ||
| + | ||
| +<h1 class="text-danger">Error.</h1> | ||
| +<h2 class="text-danger">An error occurred while processing your request.</h2> |
Oops, something went wrong.
0 comments on commit
74cac77