Skip to content

Commit b76e475

Browse files
committed
migrate .NET Core project to the .csproj format
1 parent eaae63b commit b76e475

Some content is hidden

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

47 files changed

+1260
-4451
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
bower_components/
2+
obj/
3+
bin/

.vs/bootstrap-tag-helpers/v15/.suo

51.5 KB
Binary file not shown.

.vs/config/applicationhost.config

+982
Large diffs are not rendered by default.

Properties/launchSettings.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"iisSettings": {
3+
"windowsAuthentication": false,
4+
"anonymousAuthentication": true,
5+
"iisExpress": {
6+
"applicationUrl": "http://localhost:57999/",
7+
"sslPort": 0
8+
}
9+
},
10+
"profiles": {
11+
"IIS Express": {
12+
"commandName": "IISExpress",
13+
"launchBrowser": true,
14+
"environmentVariables": {
15+
"ASPNETCORE_ENVIRONMENT": "Development"
16+
}
17+
},
18+
"bootstrap-tag-helpers": {
19+
"commandName": "Project"
20+
}
21+
}
22+
}

Views/Home/Setup.cshtml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<div class="col-md-9" role="main">
1919

2020
<div class="component">
21-
<p>In this tutorial, you will learn how to integrate Tag Helpers based on Twitter's Bootstrap into an existing project. We will be using Microsoft Visual Studio 2015.</p>
21+
<p>In this tutorial, you will learn how to integrate Tag Helpers based on Twitter's Bootstrap into an existing project. We will be using Microsoft Visual Studio 2017.</p>
2222
</div>
2323

2424
<h2 id="create">1. Create a new ASP .NET Core Web Application</h2>

Views/Shared/_Layout.cshtml

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.9.1/styles/zenburn.min.css"
2222
asp-fallback-href="~/lib/highlightjs/styles/zenburn.css"
2323
asp-fallback-test-class="hljs" asp-fallback-test-property="display" asp-fallback-test-value="block">*@
24+
<link rel="stylesheet" href="~/css/bootstrap.mvc.css" />
2425
<link rel="stylesheet" href="~/css/site.css" asp-file-version="true" />
2526
</environment>
2627
</head>

0 commit comments

Comments
 (0)