Browse Source

ApplicationInsights deleted from 3 projects.

pull/217/head
IgorSychev 7 years ago
committed by Igor Sychev
parent
commit
d35dc2ea17
6 changed files with 3 additions and 21 deletions
  1. +0
    -1
      src/Services/Location/Locations.API/Locations.API.csproj
  2. +1
    -6
      src/Services/Location/Locations.API/Program.cs
  3. +0
    -1
      src/Services/Payment/Payment.API/Payment.API.csproj
  4. +1
    -6
      src/Services/Payment/Payment.API/Program.cs
  5. +1
    -6
      src/Web/WebStatus/Program.cs
  6. +0
    -1
      src/Web/WebStatus/WebStatus.csproj

+ 0
- 1
src/Services/Location/Locations.API/Locations.API.csproj View File

@ -12,7 +12,6 @@
<ItemGroup>
<PackageReference Include="Autofac.Extensions.DependencyInjection" Version="4.1.0" />
<PackageReference Include="IdentityServer4.AccessTokenValidation" Version="1.2.0" />
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.0.0" />
<PackageReference Include="Microsoft.AspNetCore" Version="1.1.2" />
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="1.1.3" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="1.1.2" />


+ 1
- 6
src/Services/Location/Locations.API/Program.cs View File

@ -1,8 +1,4 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using System.IO;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
@ -17,7 +13,6 @@ namespace Microsoft.eShopOnContainers.Services.Locations.API
.UseHealthChecks("/hc")
.UseContentRoot(Directory.GetCurrentDirectory())
.UseStartup<Startup>()
.UseApplicationInsights()
.Build();
host.Run();


+ 0
- 1
src/Services/Payment/Payment.API/Payment.API.csproj View File

@ -11,7 +11,6 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="Autofac.Extensions.DependencyInjection" Version="4.1.0" />
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.0.0" />
<PackageReference Include="Microsoft.AspNetCore" Version="1.1.2" />
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="1.1.3" />
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="1.1.2" />


+ 1
- 6
src/Services/Payment/Payment.API/Program.cs View File

@ -1,8 +1,4 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using System.IO;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
@ -16,7 +12,6 @@ namespace Payment.API
.UseKestrel()
.UseContentRoot(Directory.GetCurrentDirectory())
.UseStartup<Startup>()
.UseApplicationInsights()
.Build();
host.Run();


+ 1
- 6
src/Web/WebStatus/Program.cs View File

@ -1,8 +1,4 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using System.IO;
using Microsoft.AspNetCore.Hosting;
namespace WebStatus
@ -16,7 +12,6 @@ namespace WebStatus
.UseContentRoot(Directory.GetCurrentDirectory())
.UseIISIntegration()
.UseStartup<Startup>()
.UseApplicationInsights()
.Build();
host.Run();


+ 0
- 1
src/Web/WebStatus/WebStatus.csproj View File

@ -9,7 +9,6 @@
<DockerComposeProjectPath>..\..\..\docker-compose.dcproj</DockerComposeProjectPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.0.0" />
<PackageReference Include="Microsoft.AspNetCore" Version="1.1.2" />
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="1.1.3" />
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="1.1.2" />


Loading…
Cancel
Save