Skip to content

Migrate .NET Core project to the .csproj format #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 7, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
bower_components/
obj/
bin/
Binary file added .vs/bootstrap-tag-helpers/v15/.suo
Binary file not shown.
982 changes: 982 additions & 0 deletions .vs/config/applicationhost.config

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions Properties/launchSettings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:57999/",
"sslPort": 0
}
},
"profiles": {
"IIS Express": {
"commandName": "IISExpress",
"launchBrowser": true,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"bootstrap-tag-helpers": {
"commandName": "Project"
}
}
}
2 changes: 1 addition & 1 deletion Views/Home/Setup.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<div class="col-md-9" role="main">

<div class="component">
<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>
<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>
</div>

<h2 id="create">1. Create a new ASP .NET Core Web Application</h2>
Expand Down
1 change: 1 addition & 0 deletions Views/Shared/_Layout.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.9.1/styles/zenburn.min.css"
asp-fallback-href="~/lib/highlightjs/styles/zenburn.css"
asp-fallback-test-class="hljs" asp-fallback-test-property="display" asp-fallback-test-value="block">*@
<link rel="stylesheet" href="~/css/bootstrap.mvc.css" />
<link rel="stylesheet" href="~/css/site.css" asp-file-version="true" />
</environment>
</head>
Expand Down
Loading