remove Application insights

This commit is contained in:
Collin M. Barrett 2017-04-16 12:53:03 -05:00
parent c6598d8185
commit 29ce4e0744
2 changed files with 1 additions and 2 deletions

View file

@ -15,7 +15,6 @@
<Folder Include="wwwroot\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.0.0" />
<PackageReference Include="Microsoft.AspNetCore" Version="1.1.1" />
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="1.1.2" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="1.1.1" />

View file

@ -16,7 +16,7 @@ public static void Main(string[] args)
.UseIISIntegration()
.UseStartup<Startup>()
.UseUrls("http://localhost:5123")
.UseApplicationInsights()
//.UseApplicationInsights()
.Build();
host.Run();