Skip to content

Commit bb3ce4c

Browse files
khellangkevinchalet
authored andcommitted
Make sure all files end in a newline
1 parent 9df86af commit bb3ce4c

File tree

101 files changed

+101
-101
lines changed

Some content is hidden

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

101 files changed

+101
-101
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ osx_image: xcode8.2
2222
before_install:
2323
- if test "$TRAVIS_OS_NAME" == "osx"; then brew update; brew install openssl; ln -s /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/; ln -s /usr/local/opt/openssl/lib/libssl.1.0.0.dylib /usr/local/lib/; fi
2424
script:
25-
- ./build.sh
25+
- ./build.sh

NuGet.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
<packageSources>
44
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
55
</packageSources>
6-
</configuration>
6+
</configuration>

samples/Mvc.Client/Controllers/AuthenticationController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ public IActionResult SignOut()
4747
CookieAuthenticationDefaults.AuthenticationScheme);
4848
}
4949
}
50-
}
50+
}

samples/Mvc.Client/Controllers/HomeController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ public class HomeController : Controller
1313
[HttpGet("~/")]
1414
public ActionResult Index() => View();
1515
}
16-
}
16+
}

samples/Mvc.Client/Extensions/HttpContextExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ where string.Equals(description.AuthenticationScheme, provider, StringComparison
3838
select description).Any();
3939
}
4040
}
41-
}
41+
}

samples/Mvc.Client/Properties/launchSettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222
}
2323
}
2424
}
25-
}
25+
}

samples/Mvc.Client/Startup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@ public void Configure(IApplicationBuilder app)
5050
app.UseMvc();
5151
}
5252
}
53-
}
53+
}

samples/Mvc.Client/Views/Authentication/SignIn.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
<button class="btn btn-lg btn-success" type="submit">Connect using @description.DisplayName</button>
1414
</form>
1515
}
16-
</div>
16+
</div>

samples/Mvc.Client/Views/Home/Index.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
<h1>Welcome, anonymous</h1>
1818
<a class="btn btn-lg btn-success" href="/signin?returnUrl=%2F">Sign in</a>
1919
}
20-
</div>
20+
</div>

samples/Mvc.Client/Views/Shared/_Layout.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@
2727

2828
</div>
2929
</body>
30-
</html>
30+
</html>

0 commit comments

Comments
 (0)