Commit 509c88d05d2781c4552eb0b7a14f3797aeda2f17

Authored by Yarik
1 parent 0955a009

Test

Showing 3 changed files with 23 additions and 1 deletions   Show diff stats
.gitignore
... ... @@ -4,3 +4,4 @@
4 4  
5 5 /bin/Debug/netcoreapp1.0
6 6 /obj/Debug/netcoreapp1.0
  7 +/.vs
... ...
Maps.sln 0 → 100644
  1 +
  2 +Microsoft Visual Studio Solution File, Format Version 12.00
  3 +# Visual Studio 14
  4 +VisualStudioVersion = 14.0.25420.1
  5 +MinimumVisualStudioVersion = 10.0.40219.1
  6 +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Maps", "Maps.xproj", "{C746E65B-78A5-44E0-8A27-A21E016DC9C7}"
  7 +EndProject
  8 +Global
  9 + GlobalSection(SolutionConfigurationPlatforms) = preSolution
  10 + Debug|Any CPU = Debug|Any CPU
  11 + Release|Any CPU = Release|Any CPU
  12 + EndGlobalSection
  13 + GlobalSection(ProjectConfigurationPlatforms) = postSolution
  14 + {C746E65B-78A5-44E0-8A27-A21E016DC9C7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
  15 + {C746E65B-78A5-44E0-8A27-A21E016DC9C7}.Debug|Any CPU.Build.0 = Debug|Any CPU
  16 + {C746E65B-78A5-44E0-8A27-A21E016DC9C7}.Release|Any CPU.ActiveCfg = Release|Any CPU
  17 + {C746E65B-78A5-44E0-8A27-A21E016DC9C7}.Release|Any CPU.Build.0 = Release|Any CPU
  18 + EndGlobalSection
  19 + GlobalSection(SolutionProperties) = preSolution
  20 + HideSolutionNode = FALSE
  21 + EndGlobalSection
  22 +EndGlobal
... ...
Program.cs
... ... @@ -14,7 +14,6 @@ namespace Maps
14 14 var host = new WebHostBuilder()
15 15 .UseKestrel()
16 16 .UseContentRoot(Directory.GetCurrentDirectory())
17   - .UseIISIntegration()
18 17 .UseStartup<Startup>()
19 18 .Build();
20 19  
... ...