Skip to content

Commit 7324b15

Browse files
committed
Update to target dotnet 4.8
1 parent 16c8c6d commit 7324b15

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

+26979
-16683
lines changed

aspnet-get-started.sln

+10-7
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,25 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 14
4-
VisualStudioVersion = 14.0.24720.0
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.2.32516.85
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "aspnet-get-started", "aspnet-get-started\aspnet-get-started.csproj", "{8761CE11-370E-4A69-872E-EB6A07F9B14C}"
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "aspnet-get-started", "aspnet-get-started\aspnet-get-started.csproj", "{05C4F426-D1D8-47B9-B4F9-3F0291558B02}"
77
EndProject
88
Global
99
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1010
Debug|Any CPU = Debug|Any CPU
1111
Release|Any CPU = Release|Any CPU
1212
EndGlobalSection
1313
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14-
{8761CE11-370E-4A69-872E-EB6A07F9B14C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15-
{8761CE11-370E-4A69-872E-EB6A07F9B14C}.Debug|Any CPU.Build.0 = Debug|Any CPU
16-
{8761CE11-370E-4A69-872E-EB6A07F9B14C}.Release|Any CPU.ActiveCfg = Release|Any CPU
17-
{8761CE11-370E-4A69-872E-EB6A07F9B14C}.Release|Any CPU.Build.0 = Release|Any CPU
14+
{05C4F426-D1D8-47B9-B4F9-3F0291558B02}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{05C4F426-D1D8-47B9-B4F9-3F0291558B02}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{05C4F426-D1D8-47B9-B4F9-3F0291558B02}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{05C4F426-D1D8-47B9-B4F9-3F0291558B02}.Release|Any CPU.Build.0 = Release|Any CPU
1818
EndGlobalSection
1919
GlobalSection(SolutionProperties) = preSolution
2020
HideSolutionNode = FALSE
2121
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {3FC17D5D-4262-4D77-86F7-5AD49267AFDB}
24+
EndGlobalSection
2225
EndGlobal

aspnet-get-started/App_Start/BundleConfig.cs

+3-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace aspnet_get_started
55
{
66
public class BundleConfig
77
{
8-
// For more information on bundling, visit http://go.microsoft.com/fwlink/?LinkId=301862
8+
// For more information on bundling, visit https://go.microsoft.com/fwlink/?LinkId=301862
99
public static void RegisterBundles(BundleCollection bundles)
1010
{
1111
bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
@@ -15,13 +15,12 @@ public static void RegisterBundles(BundleCollection bundles)
1515
"~/Scripts/jquery.validate*"));
1616

1717
// Use the development version of Modernizr to develop with and learn from. Then, when you're
18-
// ready for production, use the build tool at http://modernizr.com to pick only the tests you need.
18+
// ready for production, use the build tool at https://modernizr.com to pick only the tests you need.
1919
bundles.Add(new ScriptBundle("~/bundles/modernizr").Include(
2020
"~/Scripts/modernizr-*"));
2121

2222
bundles.Add(new ScriptBundle("~/bundles/bootstrap").Include(
23-
"~/Scripts/bootstrap.js",
24-
"~/Scripts/respond.js"));
23+
"~/Scripts/bootstrap.js"));
2524

2625
bundles.Add(new StyleBundle("~/Content/css").Include(
2726
"~/Content/bootstrap.css",

aspnet-get-started/Content/Site.css

+6
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,9 @@ select,
2222
textarea {
2323
max-width: 280px;
2424
}
25+
26+
.navbar-inverse .navbar-toggle:hover,
27+
.navbar-inverse .navbar-toggle:focus {
28+
background-color: #777;
29+
border-color: #fff
30+
}

0 commit comments

Comments
 (0)