Skip to content
This repository has been archived by the owner on Jul 5, 2020. It is now read-only.

Commit

Permalink
Merge pull request #1118 from Microsoft/develop
Browse files Browse the repository at this point in the history
Devto master beta2
  • Loading branch information
cijothomas authored Nov 27, 2018
2 parents f041d99 + 332aa0b commit d480a0b
Show file tree
Hide file tree
Showing 53 changed files with 156 additions and 115 deletions.
2 changes: 1 addition & 1 deletion GlobalStaticVersion.props
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<SemanticVersionMinor>9</SemanticVersionMinor>
<SemanticVersionPatch>0</SemanticVersionPatch>
<!--Valid values: beta1, beta2, EMPTY for stable -->
<PreReleaseMilestone>beta1</PreReleaseMilestone>
<PreReleaseMilestone>beta2</PreReleaseMilestone>
<!--
Date when Semantic Version was changed.
Update for every public release.
Expand Down
5 changes: 5 additions & 0 deletions Src/Common/HeadersUtilities.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@
using System.Globalization;
using System.Linq;
using System.Text.RegularExpressions;
#if DEPENDENCY_COLLECTOR
using Microsoft.ApplicationInsights.Common;
#else
using Microsoft.ApplicationInsights.Common.Internal;
#endif

/// <summary>
/// Generic functions that can be used to get and set Http headers.
Expand Down
8 changes: 6 additions & 2 deletions Src/Common/InjectionGuardConstants.cs
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
namespace Microsoft.ApplicationInsights.Common
#if DEPENDENCY_COLLECTOR
namespace Microsoft.ApplicationInsights.Common
#else
namespace Microsoft.ApplicationInsights.Common.Internal
#endif
{
/// <summary>
/// These values are listed to guard against malicious injections by limiting the max size allowed in an HTTP Response.
/// These max limits are intentionally exaggerated to allow for unexpected responses, while still guarding against unreasonably large responses.
/// Example: While a 32 character response may be expected, 50 characters may be permitted while a 10,000 character response would be unreasonable and malicious.
/// </summary>
#if DEPENDENCY_COLLECTOR
public
public
#else
internal
#endif
Expand Down
14 changes: 11 additions & 3 deletions Src/Common/StringUtilities.cs
Original file line number Diff line number Diff line change
@@ -1,15 +1,23 @@
namespace Microsoft.ApplicationInsights.Common
#if DEPENDENCY_COLLECTOR
namespace Microsoft.ApplicationInsights.Common
#else
namespace Microsoft.ApplicationInsights.Common.Internal
#endif
{
using System;
using System.Diagnostics;
using System.Globalization;
using Microsoft.ApplicationInsights.W3C;
#if DEPENDENCY_COLLECTOR
using Microsoft.ApplicationInsights.W3C;
#else
using Microsoft.ApplicationInsights.W3C.Internal;
#endif

/// <summary>
/// Generic functions to perform common operations on a string.
/// </summary>
#if DEPENDENCY_COLLECTOR
public
public
#else
internal
#endif
Expand Down
12 changes: 10 additions & 2 deletions Src/Common/W3C/W3CActivityExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,20 +1,28 @@
namespace Microsoft.ApplicationInsights.W3C
#if DEPENDENCY_COLLECTOR
namespace Microsoft.ApplicationInsights.W3C
#else
namespace Microsoft.ApplicationInsights.W3C.Internal
#endif
{
using System;
using System.ComponentModel;
using System.Diagnostics;
using System.Globalization;
using System.Linq;
using System.Text.RegularExpressions;
#if DEPENDENCY_COLLECTOR
using Microsoft.ApplicationInsights.Common;
#else
using Microsoft.ApplicationInsights.Common.Internal;
#endif

/// <summary>
/// Extends Activity to support W3C distributed tracing standard.
/// </summary>
[Obsolete("Not ready for public consumption.")]
[EditorBrowsable(EditorBrowsableState.Never)]
#if DEPENDENCY_COLLECTOR
public
public
#else
internal
#endif
Expand Down
8 changes: 6 additions & 2 deletions Src/Common/W3C/W3CConstants.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
namespace Microsoft.ApplicationInsights.W3C
#if DEPENDENCY_COLLECTOR
namespace Microsoft.ApplicationInsights.W3C
#else
namespace Microsoft.ApplicationInsights.W3C.Internal
#endif
{
using System;
using System.ComponentModel;
Expand All @@ -9,7 +13,7 @@
[Obsolete("Not ready for public consumption.")]
[EditorBrowsable(EditorBrowsableState.Never)]
#if DEPENDENCY_COLLECTOR
public
public
#else
internal
#endif
Expand Down
16 changes: 12 additions & 4 deletions Src/Common/W3C/W3COperationCorrelationTelemetryInitializer.cs
Original file line number Diff line number Diff line change
@@ -1,15 +1,23 @@
namespace Microsoft.ApplicationInsights.W3C
#if DEPENDENCY_COLLECTOR
namespace Microsoft.ApplicationInsights.W3C
#else
namespace Microsoft.ApplicationInsights.W3C.Internal
#endif
{
using System;
using System.ComponentModel;
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
using Microsoft.ApplicationInsights.Channel;
using Microsoft.ApplicationInsights.Common;
using Microsoft.ApplicationInsights.Channel;
using Microsoft.ApplicationInsights.DataContracts;
using Microsoft.ApplicationInsights.Extensibility;
using Microsoft.ApplicationInsights.Extensibility.Implementation;
#if DEPENDENCY_COLLECTOR
using Microsoft.ApplicationInsights.Common;
#else
using Microsoft.ApplicationInsights.Common.Internal;
#endif

/// <summary>
/// Telemetry Initializer that sets correlation ids for W3C.
Expand All @@ -18,7 +26,7 @@
[SuppressMessage("Microsoft.Performance", "CA1812:AvoidUninstantiatedInternalClasses", Justification = "TelemetryInitializers are intended to be instatiated by the framework when added to a config.")]
[EditorBrowsable(EditorBrowsableState.Never)]
#if DEPENDENCY_COLLECTOR
public
public
#else
internal
#endif
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

<ItemGroup>
<!--Common Dependencies-->
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.9.0-beta1" />
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.9.0-beta2" />
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="4.5.0" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
<RootNamespace>Microsoft.ApplicationInsights.DependencyCollector</RootNamespace>
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.ApplicationInsights, Version=2.9.0-beta1, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\..\..\..\packages\Microsoft.ApplicationInsights.2.9.0-beta1\lib\net45\Microsoft.ApplicationInsights.dll</HintPath>
<Reference Include="Microsoft.ApplicationInsights, Version=2.9.0-beta2, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\..\..\..\packages\Microsoft.ApplicationInsights.2.9.0-beta2\lib\net45\Microsoft.ApplicationInsights.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework" />
Expand Down
2 changes: 1 addition & 1 deletion Src/DependencyCollector/Net45.Tests/packages.config
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Microsoft.ApplicationInsights" version="2.9.0-beta1" targetFramework="net451" />
<package id="Microsoft.ApplicationInsights" version="2.9.0-beta2" targetFramework="net451" />
<package id="StyleCop.Analyzers" version="1.0.2" targetFramework="net451" developmentDependency="true" />
<package id="System.Diagnostics.DiagnosticSource" version="4.5.0" targetFramework="net451" />
<package id="xunit" version="2.1.0" targetFramework="net451" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
<DefineConstants>$(DefineConstants);NET45</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.ApplicationInsights, Version=2.9.0-beta1, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\..\..\..\packages\Microsoft.ApplicationInsights.2.9.0-beta1\lib\net45\Microsoft.ApplicationInsights.dll</HintPath>
<Reference Include="Microsoft.ApplicationInsights, Version=2.9.0-beta2, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\..\..\..\packages\Microsoft.ApplicationInsights.2.9.0-beta2\lib\net45\Microsoft.ApplicationInsights.dll</HintPath>
</Reference>
<Reference Include="Microsoft.QualityTools.Testing.Fakes, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>fakesAssemblyForBuild\Microsoft.QualityTools.Testing.Fakes.dll</HintPath>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="MicroBuild.Core" version="0.3.0" targetFramework="net45" developmentDependency="true" />
<package id="Microsoft.ApplicationInsights" version="2.9.0-beta1" targetFramework="net45" />
<package id="Microsoft.ApplicationInsights" version="2.9.0-beta2" targetFramework="net45" />
<package id="StyleCop.Analyzers" version="1.0.2" targetFramework="net45" developmentDependency="true" />
<package id="System.Diagnostics.DiagnosticSource" version="4.5.0" targetFramework="net45" />
</packages>
2 changes: 1 addition & 1 deletion Src/HostingStartup/HostingStartup/HostingStartup.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

<ItemGroup>
<!--Common Dependencies-->
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.9.0-beta1" />
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.9.0-beta2" />
<PackageReference Include="Microsoft.Web.Infrastructure" Version="1.0.0.0" />
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="4.5.0" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
<RunCodeAnalysis>true</RunCodeAnalysis>
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.ApplicationInsights, Version=2.9.0-beta1, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\..\..\..\packages\Microsoft.ApplicationInsights.2.9.0-beta1\lib\net45\Microsoft.ApplicationInsights.dll</HintPath>
<Reference Include="Microsoft.ApplicationInsights, Version=2.9.0-beta2, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\..\..\..\packages\Microsoft.ApplicationInsights.2.9.0-beta2\lib\net45\Microsoft.ApplicationInsights.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Microsoft.ApplicationInsights" version="2.9.0-beta1" targetFramework="net45" />
<package id="Microsoft.ApplicationInsights" version="2.9.0-beta2" targetFramework="net45" />
<package id="Microsoft.Diagnostics.Tracing.EventSource.Redist" version="1.1.28" targetFramework="net45" />
<package id="StyleCop.Analyzers" version="1.0.2" targetFramework="net45" developmentDependency="true" />
<package id="System.Diagnostics.DiagnosticSource" version="4.5.0" targetFramework="net45" />
Expand Down
2 changes: 1 addition & 1 deletion Src/PerformanceCollector/PerformanceCollector/Perf.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@

<ItemGroup>
<!--Common Dependencies-->
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.9.0-beta1" />
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.9.0-beta2" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net45'">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
using Microsoft.ApplicationInsights.DataContracts;
using Microsoft.ApplicationInsights.Extensibility;
using Microsoft.ApplicationInsights.Extensibility.Implementation;
using Microsoft.ApplicationInsights.W3C;
using Microsoft.ApplicationInsights.W3C.Internal;
using Microsoft.ApplicationInsights.Web;
using Microsoft.ApplicationInsights.Web.Helpers;
using Microsoft.ApplicationInsights.Web.TestFramework;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

using Microsoft.ApplicationInsights.Common;
using Microsoft.ApplicationInsights.DataContracts;
using Microsoft.ApplicationInsights.W3C;
using Microsoft.ApplicationInsights.W3C.Internal;
using Microsoft.ApplicationInsights.Web.Helpers;
using Microsoft.VisualStudio.TestTools.UnitTesting;

Expand Down
4 changes: 2 additions & 2 deletions Src/Web/Web.Net45.Tests/Web.Net45.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
<Reference Include="Castle.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=407dd0808d44fbdc, processorArchitecture=MSIL">
<HintPath>..\..\..\..\packages\Castle.Core.4.2.1\lib\net45\Castle.Core.dll</HintPath>
</Reference>
<Reference Include="Microsoft.ApplicationInsights, Version=2.9.0-beta1, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\..\..\..\packages\Microsoft.ApplicationInsights.2.9.0-beta1\lib\net45\Microsoft.ApplicationInsights.dll</HintPath>
<Reference Include="Microsoft.ApplicationInsights, Version=2.9.0-beta2, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\..\..\..\packages\Microsoft.ApplicationInsights.2.9.0-beta2\lib\net45\Microsoft.ApplicationInsights.dll</HintPath>
</Reference>
<Reference Include="Microsoft.AspNet.TelemetryCorrelation, Version=1.0.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\..\..\..\packages\Microsoft.AspNet.TelemetryCorrelation.1.0.4\lib\net45\Microsoft.AspNet.TelemetryCorrelation.dll</HintPath>
Expand Down
2 changes: 1 addition & 1 deletion Src/Web/Web.Net45.Tests/packages.config
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Castle.Core" version="4.2.1" targetFramework="net451" />
<package id="Microsoft.ApplicationInsights" version="2.9.0-beta1" targetFramework="net451" />
<package id="Microsoft.ApplicationInsights" version="2.9.0-beta2" targetFramework="net451" />
<package id="Microsoft.AspNet.Mvc" version="5.2.4" targetFramework="net451" />
<package id="Microsoft.AspNet.Razor" version="3.2.4" targetFramework="net451" />
<package id="Microsoft.AspNet.TelemetryCorrelation" version="1.0.4" targetFramework="net451" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
using Microsoft.ApplicationInsights.Extensibility;
using Microsoft.ApplicationInsights.Extensibility.Implementation;
using Microsoft.ApplicationInsights.TestFramework;
using Microsoft.ApplicationInsights.W3C;
using Microsoft.ApplicationInsights.W3C.Internal;
using Microsoft.ApplicationInsights.Web.Helpers;
using Microsoft.ApplicationInsights.Web.Implementation;
using Microsoft.ApplicationInsights.Web.TestFramework;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using System.Web;
using Microsoft.ApplicationInsights.Common;
using Microsoft.ApplicationInsights.DataContracts;
using Microsoft.ApplicationInsights.W3C;
using Microsoft.ApplicationInsights.W3C.Internal;
using Microsoft.AspNet.TelemetryCorrelation;

#pragma warning disable 612, 618
Expand Down
6 changes: 5 additions & 1 deletion Src/Web/Web/Web.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

<ItemGroup>
<!--Common Dependencies-->
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.9.0-beta1" />
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.9.0-beta2" />
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="4.5.0" />
<PackageReference Include="Microsoft.AspNet.TelemetryCorrelation" Version="1.0.4" />
</ItemGroup>
Expand All @@ -45,6 +45,10 @@
<!--Nuget Transforms (install.xdt, uninstall.xdt, config.transform): "nupkg\content\<framework>\*.*-->
<Content Include="net45\*" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\WindowsServer\WindowsServer\WindowsServer.csproj" />
</ItemGroup>

<ItemGroup>
<!--Framework References-->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' " />
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' " />
<ItemGroup>
<Reference Include="Microsoft.ApplicationInsights, Version=2.9.0-beta1, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\..\..\..\packages\Microsoft.ApplicationInsights.2.9.0-beta1\lib\net45\Microsoft.ApplicationInsights.dll</HintPath>
<Reference Include="Microsoft.ApplicationInsights, Version=2.9.0-beta2, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\..\..\..\packages\Microsoft.ApplicationInsights.2.9.0-beta2\lib\net45\Microsoft.ApplicationInsights.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Diagnostics.DiagnosticSource, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Microsoft.ApplicationInsights" version="2.9.0-beta1" targetFramework="net45" />
<package id="Microsoft.ApplicationInsights" version="2.9.0-beta2" targetFramework="net45" />
<package id="StyleCop.Analyzers" version="1.0.2" targetFramework="net45" developmentDependency="true" />
<package id="System.Diagnostics.DiagnosticSource" version="4.5.0" targetFramework="net45" />
<package id="xunit" version="2.1.0" targetFramework="net45" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.9.0-beta1" />
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.9.0-beta2" />
<PackageReference Include="Microsoft.AspNetCore.Hosting.Abstractions" Version="1.1.2" />
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="1.1.2" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.6.0" />
Expand Down
18 changes: 9 additions & 9 deletions Src/WindowsServer/WindowsServer/WindowsServer.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\Product.props" />

<PropertyGroup>
Expand Down Expand Up @@ -34,13 +34,8 @@

<ItemGroup>
<!--Common Dependencies-->
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.9.0-beta1" />
<PackageReference Include="Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel" Version="2.9.0-beta1" />
<PackageReference Include="Microsoft.ApplicationInsights.DependencyCollector" Version="2.9.0-beta1">
<!--This is needed only in runtime as no code in WindowsServer package has compile time dependency on DependencyCollector-->
<IncludeAssets>runtime</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.ApplicationInsights.PerfCounterCollector" Version="2.9.0-beta1" />
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.9.0-beta2" />
<PackageReference Include="Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel" Version="2.9.0-beta2" />
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="4.5.0" />
</ItemGroup>

Expand All @@ -57,11 +52,16 @@
<Content Include="ApplicationInsights.config.uninstall.xdt" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net45'">
<ItemGroup Condition="'$(TargetFramework)' == 'net45'">
<!--Framework References-->
<Reference Include="System.Management" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\DependencyCollector\DependencyCollector\DependencyCollector.csproj" />
<ProjectReference Include="..\..\PerformanceCollector\PerformanceCollector\Perf.csproj" />
</ItemGroup>

<Import Project="..\WindowsServer.Shared\WindowsServer.Shared.projitems" Label="Shared" />
<Import Project="..\..\Common\Common.projitems" Label="Shared" />
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), 'Common.targets'))\Common.targets" />
Expand Down
4 changes: 2 additions & 2 deletions Test/E2ETests/E2ETests/DependencyCollectionTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@
</ItemGroup>
-->
<ItemGroup>
<Reference Include="Microsoft.ApplicationInsights, Version=2.9.0-beta1, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\..\..\..\packages\Microsoft.ApplicationInsights.2.9.0-beta1\lib\net46\Microsoft.ApplicationInsights.dll</HintPath>
<Reference Include="Microsoft.ApplicationInsights, Version=2.9.0-beta2, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\..\..\..\packages\Microsoft.ApplicationInsights.2.9.0-beta2\lib\net46\Microsoft.ApplicationInsights.dll</HintPath>
</Reference>
<Reference Include="Microsoft.CSharp" />
<Reference Include="Microsoft.VisualStudio.TestPlatform.TestFramework, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
Expand Down
Loading

0 comments on commit d480a0b

Please sign in to comment.