* everything solution

* added base and web tests

* update netcore

* add logging and netcore tests

* update references

* fxcop warnings: invariant string

* add nuget config

* solution update

* cleanup packages.config

* Remove perf\xdt.tests

* fxcop

* change script

* update script

* update script

* rename project to reflect actual TargetFramework

* rename projects and folders to match their build framework. this matters for pattern matching to discover tests

* Change test projects from Net4.5.1 to Net4.5

* rename assembly

* testing an update to the Test Adapters

* update internalsvisibleto

* update internalsvisibleto

* update solutions with renamed projects

* add Core func tests

* update script

* remove NetCore3.0 projects from sln

* test add extra project to netcore. update script.

* restore net core 3.0 projects

* removing netcore 3.0 projects. Will solve later

* fix for TaskFactory not compatible with NetCore

* update all these other task factories

* fxcop

* testing netcore 3.0 projects

* more fxcop

* test fix for FallbackDirectory

* testing removing feed

* update MSTest.TestAdapter 1.4 > 2.0
update MSTest.TestFramework 1.4 > 2.0
update Microsoft.NET.Test.Sdk 16.1 > 16.2

* update test packages

* roll back Microsoft.NET.Test.Sdk

* change to flaky test

* testing fix for linux build

* testing fix for linux build. removing private feeds from nuget.config

* testing fix for flaky test

* test fix for linux build. specify version of nuget.exe

* testing fix for linux build. Use Nuget restore instead of DotNet restore

* fix quotes

* fix quotes

* remove commented task

* yml

* test fix for linux nuget

* test fix for linux build. compile sln

* fix for linux build

* fix for file exception

* cleanup

* revert changes to linux build.

* fix

* fix

* remove extra file

* removing nuget dependency from WEB E2E tests: DependencyCollection

* removing nuget dependency from WEB E2E tests: PerformanceCollector

* missed one project

* removing nuget dependency from WEB E2E tests: FunctionalTests

* turn off strongname in docker tests
This commit is contained in:
Timothy Mothra 2019-11-07 13:22:11 -08:00 коммит произвёл GitHub
Родитель 8cf18d18f4
Коммит 8dc1ef43f2
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
92 изменённых файлов: 1311 добавлений и 281 удалений

Просмотреть файл

@ -6,12 +6,13 @@
</Target>
<UsingTask TaskName="InjectXmlLanguage" TaskFactory="CodeTaskFactory" AssemblyFile="$(MSBuildToolsPath)\Microsoft.Build.Tasks.Core.dll">
<UsingTask TaskName="InjectXmlLanguage" TaskFactory="RoslynCodeTaskFactory" AssemblyFile="$(MSBuildToolsPath)\Microsoft.Build.Tasks.Core.dll">
<ParameterGroup>
<InputFiles ParameterType="Microsoft.Build.Framework.ITaskItem[]" Required="true" />
</ParameterGroup>
<Task>
<Reference Include="System" />
<!--<Reference Include="System" />-->
<Using Namespace="System" />
<Using Namespace="System.Diagnostics" />
<Using Namespace="System.IO" />
<!--

Просмотреть файл

@ -1,11 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<UsingTask TaskName="InjectXmlLanguage" TaskFactory="CodeTaskFactory" AssemblyFile="$(MSBuildToolsPath)\Microsoft.Build.Tasks.Core.dll">
<UsingTask TaskName="InjectXmlLanguage" TaskFactory="RoslynCodeTaskFactory" AssemblyFile="$(MSBuildToolsPath)\Microsoft.Build.Tasks.Core.dll">
<ParameterGroup>
<InputFiles ParameterType="Microsoft.Build.Framework.ITaskItem[]" Required="true" />
</ParameterGroup>
<Task>
<Reference Include="System" />
<!--<Reference Include="System" />-->
<Using Namespace="System" />
<Using Namespace="System.Diagnostics" />
<Using Namespace="System.IO" />
<!--

Просмотреть файл

@ -5,6 +5,5 @@
<packageSources>
<clear />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
<add key="Net Core Feed" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/3.0.100-rc2-014277/nuget/v3/index.json" />
</packageSources>
</configuration>

Просмотреть файл

@ -25,10 +25,10 @@
<ProjectReference Include="..\..\..\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj" />
<ProjectReference Include="..\..\..\Test\Microsoft.ApplicationInsights.Test\ApplicationInsightsTypes\ApplicationInsightsTypes.csproj" />
<PackageReference Include="Microsoft.Diagnostics.Tracing.TraceEvent" Version="2.0.30" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
<PackageReference Include="Microsoft.TestPlatform.TestHost" Version="16.1.0" />
<PackageReference Include="MSTest.TestAdapter" Version="1.4.0" />
<PackageReference Include="MSTest.TestFramework" Version="1.4.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.3.0" />
<PackageReference Include="Microsoft.TestPlatform.TestHost" Version="16.3.0" />
<PackageReference Include="MSTest.TestAdapter" Version="2.0.0" />
<PackageReference Include="MSTest.TestFramework" Version="2.0.0" />
<PackageReference Include="CompareNETObjects" Version="4.59.0" />
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" />
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="4.6.0" />

Просмотреть файл

@ -252,8 +252,24 @@
[TestMethod]
public void ThrowsIOExceptionWhenDesiredFileNameIsTooLong()
{
var file = new PlatformFile(this.platformFile);
AssertEx.Throws<PathTooLongException>(() => file.Rename(new string('F', 1024)));
bool expectedException = false;
try
{
var file = new PlatformFile(this.platformFile);
file.Rename(new string('F', 1024));
}
catch (PathTooLongException)
{
expectedException = true;
}
catch (IOException)
{
// NET CORE 3.0 changed the exception that can be thrown.
expectedException = true;
}
Assert.IsTrue(expectedException);
}
[TestMethod]

Просмотреть файл

@ -175,8 +175,24 @@
[TestMethod]
public void ThrowsIOExceptionWhenDesiredFileNameIsTooLong()
{
var folder = new PlatformFolder(this.storageFolder);
AssertEx.Throws<PathTooLongException>(() => folder.CreateFile(new string('F', 1024)));
bool expectedException = false;
try
{
var folder = new PlatformFolder(this.storageFolder);
folder.CreateFile(new string('F', 1024));
}
catch (PathTooLongException)
{
expectedException = true;
}
catch (IOException)
{
// NET CORE 3.0 changed the exception that can be thrown.
expectedException = true;
}
Assert.IsTrue(expectedException);
}
[TestMethod]

Просмотреть файл

@ -41,5 +41,11 @@
<IntermediateOutputPath>$(ObjRoot)\$(Configuration)\$(RelativeOutputPathBase)</IntermediateOutputPath>
<IntermediateOutputPath>$([System.IO.Path]::GetFullPath( $(IntermediateOutputPath) ))\</IntermediateOutputPath>
<!-- Testing fix for https://github.com/dotnet/sdk/issues/2523 -->
<!-- If this works, should move to common and not the directory props -->
<DisableImplicitNuGetFallbackFolder>true</DisableImplicitNuGetFallbackFolder>
</PropertyGroup>
</Project>

586
Everything.sln Normal file
Просмотреть файл

@ -0,0 +1,586 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.29424.173
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.ApplicationInsights", "BASE\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj", "{E3D160E8-7F8C-416F-946F-6FDFC6787461}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TelemetryChannel", "BASE\src\ServerTelemetryChannel\TelemetryChannel.csproj", "{C30A7EB8-A86C-49EE-927E-7D9E03572E82}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Common.Base", "BASE\src\Common\Common\Common.Base.shproj", "{936AF739-4297-4016-9D70-4280042709BE}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DependencyCollector", "WEB\Src\DependencyCollector\DependencyCollector\DependencyCollector.csproj", "{96A6E04E-CEDA-4C30-8ECA-48113382AFBA}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EventCounterCollector", "WEB\Src\EventCounterCollector\EventCounterCollector\EventCounterCollector.csproj", "{13335EB8-3936-407A-9363-1C428318BEA8}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HostingStartup", "WEB\Src\HostingStartup\HostingStartup\HostingStartup.csproj", "{DEEAF599-83F9-4A05-ADD6-F612CDABE570}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Perf", "WEB\Src\PerformanceCollector\PerformanceCollector\Perf.csproj", "{9DC5C5E5-FC37-4E54-81FD-AA42BB934E9B}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Web", "WEB\Src\Web\Web\Web.csproj", "{8293BC71-7DDC-4DD1-8807-280EEF7E752D}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WindowsServer", "WEB\Src\WindowsServer\WindowsServer\WindowsServer.csproj", "{7B5D95EE-50EE-4222-A03C-FAE5905B3DFD}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Common.Web", "WEB\Src\Common\Common.Web.shproj", "{CCAB7A34-8DC5-4A6F-B637-46CEBA93C687}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Common.Logging", "LOGGING\src\CommonShared\Common.Logging.shproj", "{587B624B-8C64-498E-93D7-A2D2ABC17EAB}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DiagnosticSourceListener", "LOGGING\src\DiagnosticSourceListener\DiagnosticSourceListener.csproj", "{2E283031-425B-421F-9E81-34ABFEFAB618}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EtwCollector", "LOGGING\src\EtwCollector\EtwCollector.csproj", "{1B0F54BF-078A-421C-9708-2D817D4BCE30}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "B) ApplicationInsights", "B) ApplicationInsights", "{632FB9CE-540D-4451-9FF2-12E89C1492BD}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "B) TelemetryChannel", "B) TelemetryChannel", "{FBAFD313-0139-4DA3-BCB3-EE54DC3B6CCD}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "W) DependencyCollector", "W) DependencyCollector", "{005BD823-60AF-406E-AC20-842D7653FE60}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "L) DiagnosticSourceListener", "L) DiagnosticSourceListener", "{60CDB555-C5FE-4010-A37B-014B04C5EAC3}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "W) PerfCounterCollector", "W) PerfCounterCollector", "{3EDBC945-E531-4CEE-A038-A6AE1EF9AA96}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "W) HostingStartup", "W) HostingStartup", "{7EC1F6B8-9F94-4947-B596-EB3726C53AE0}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "W) Web", "W) Web", "{07076842-9CAA-4B4A-8AEF-88DE88CD37AC}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "W) WindowsServer", "W) WindowsServer", "{11AC7235-167E-40B5-B2E3-9CBF08700064}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "L) EtwCollector", "L) EtwCollector", "{05E05465-F285-4689-BFC5-F78FC5761992}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "W) EventCounterCollector", "W) EventCounterCollector", "{DFCBB4ED-976C-4239-BCAF-8AA21E684E8C}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EventSourceListener", "LOGGING\src\EventSourceListener\EventSourceListener.csproj", "{52B3C054-C686-4BB8-A4B7-9E8D6C49491F}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "L) EventSourceListener", "L) EventSourceListener", "{DB0D10AF-7DA5-49CE-B90E-67F896BEED1C}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ILogger", "LOGGING\src\ILogger\ILogger.csproj", "{67291093-4B5F-4CA5-A811-B8A1DCBE3F1F}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "L) ILogger", "L) ILogger", "{477A1BA0-0155-404C-A6E0-C2409C0FFE70}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Log4NetAppender", "LOGGING\src\Log4NetAppender\Log4NetAppender.csproj", "{3774003C-91FD-4D79-99C7-9BEAC5B9A48E}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "L) Log4NetAppender", "L) Log4NetAppender", "{DDA01098-8272-4C5A-BB97-BCB4FA65CFE6}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NLogTarget", "LOGGING\src\NLogTarget\NLogTarget.csproj", "{63B8FDA7-2FF5-4A20-8DE7-EBB036012A54}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "L) NLogTarget", "L) NLogTarget", "{39474EE1-28E8-456E-889F-553F129411C8}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "L) TraceListener", "L) TraceListener", "{AFEB7CAA-A8BF-4D03-A5CB-BFC5AE378201}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TraceListener", "LOGGING\src\TraceListener\TraceListener.csproj", "{2612AC44-5FF3-4533-B5A5-E5DBF96F5C83}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Common.Logging.EventSource", "LOGGING\src\EventSource.Shared\EventSource.Shared\Common.Logging.EventSource.shproj", "{A964DE6D-9750-4013-8BE2-79C2AFC056E5}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.ApplicationInsights.AspNetCore", "NETCORE\src\Microsoft.ApplicationInsights.AspNetCore\Microsoft.ApplicationInsights.AspNetCore.csproj", "{AC399F09-B465-4CFD-8D82-F1D1C5C9347E}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "C) AspNetCore", "C) AspNetCore", "{E9AEB857-E8AA-4ED6-A020-DF4D8486CEB0}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.ApplicationInsights.WorkerService", "NETCORE\src\Microsoft.ApplicationInsights.WorkerService\Microsoft.ApplicationInsights.WorkerService.csproj", "{3CAB7F66-3CC4-4B46-9B0D-765C460FE2BF}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "C) WorkerService", "C) WorkerService", "{D8483C3E-C386-48AD-B935-700A54FDCF31}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Common.NetCore", "NETCORE\src\Shared\Common.NetCore.shproj", "{D56F2979-D6BC-4EF2-BB9B-4077B3290599}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ApplicationInsightsTypes", "BASE\Test\Microsoft.ApplicationInsights.Test\ApplicationInsightsTypes\ApplicationInsightsTypes.csproj", "{4B0BC3B7-C7FC-4333-9E28-5790D9153F07}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.ApplicationInsights.Net45.Tests", "BASE\Test\Microsoft.ApplicationInsights.Test\Net45\Microsoft.ApplicationInsights.Net45.Tests.csproj", "{0927E682-4A56-45B6-8125-94FA066B2F57}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.ApplicationInsights.Net46.Tests", "BASE\Test\Microsoft.ApplicationInsights.Test\Net46\Microsoft.ApplicationInsights.Net46.Tests.csproj", "{0927E682-4A56-46B6-8125-94FA066B2F57}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.ApplicationInsights.netcoreapp11.Tests", "BASE\Test\Microsoft.ApplicationInsights.Test\netcoreapp11\Microsoft.ApplicationInsights.netcoreapp11.Tests.csproj", "{ABFE623D-9276-4559-90DC-197EA32A0E21}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Microsoft.ApplicationInsights.Shared.Tests", "BASE\Test\Microsoft.ApplicationInsights.Test\Shared\Microsoft.ApplicationInsights.Shared.Tests.shproj", "{C4A0DB5B-0988-4E04-B9B8-BCF3B0842000}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.ApplicationInsights.Isolated.Tests", "BASE\Test\Microsoft.ApplicationInsights.Test\Standalone\Microsoft.ApplicationInsights.Isolated.Tests.csproj", "{2759BC71-7F47-44DA-8579-AE2D8C8C684D}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "net45.Shared.Tests", "BASE\Test\ServerTelemetryChannel.Test\net45.Shared.Tests\net45.Shared.Tests.shproj", "{C5A3F18D-1426-4941-9D81-D21062A2B8F2}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TelemetryChannel.Net45.Tests", "BASE\Test\ServerTelemetryChannel.Test\Net45.Tests\TelemetryChannel.Net45.Tests.csproj", "{DD9659BE-7C0F-4298-82B2-5E957F95977A}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TelemetryChannel.netcoreapp11.Tests", "BASE\Test\ServerTelemetryChannel.Test\NetCore.Tests\TelemetryChannel.netcoreapp11.Tests.csproj", "{037DD64B-F486-4B53-A83D-7E34A3214B4D}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TelemetryChannel.netcoreapp20.Tests", "BASE\Test\ServerTelemetryChannel.Test\NetCore20.Tests\TelemetryChannel.netcoreapp20.Tests.csproj", "{14FA551E-886A-4D1B-B716-567EB4954C8E}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Shared.Tests", "BASE\Test\ServerTelemetryChannel.Test\Shared.Tests\Shared.Tests.shproj", "{C5A3F18F-1426-4941-9D81-D21062A2B8F2}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TelemetryChannel.Nuget.Tests", "BASE\Test\ServerTelemetryChannel.Test\TelemetryChannel.Nuget.Tests\TelemetryChannel.Nuget.Tests.csproj", "{21CB9A8A-F25B-4DEB-92CB-ACB6920EB8BC}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "TestFramework.Shared.Base", "BASE\Test\TestFramework\Shared\TestFramework.Shared.Base.shproj", "{F76C6CBD-29B0-4564-BDCB-C969F8FEC136}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "TestFramework.Shared.Web", "WEB\Src\TestFramework\Shared\TestFramework.Shared.Web.shproj", "{9718F051-147F-4F5F-9FF3-C926430EFCF7}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DependencyCollector.Net45.Tests", "WEB\Src\DependencyCollector\Net45.Tests\DependencyCollector.Net45.Tests.csproj", "{257FCE5A-0779-45A5-B541-0CE43D79D009}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DependencyCollector.NetCore.Tests", "WEB\Src\DependencyCollector\NetCore.Tests\DependencyCollector.NetCore.Tests.csproj", "{BF5C70AB-4DCF-499D-93B3-B6F036DE5CCE}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "DependencyCollector.Shared", "WEB\Src\DependencyCollector\Shared\DependencyCollector.Shared.shproj", "{669E7E58-072D-4B0A-A4DD-4EB2AE2EA4D4}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "DependencyCollector.Shared.Tests", "WEB\Src\DependencyCollector\Shared.Tests\DependencyCollector.Shared.Tests.shproj", "{ACE58393-3419-4FCA-87CC-C33EB756C7E4}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EventCounterCollector.Tests", "WEB\Src\EventCounterCollector\EventCounterCollector.Tests\EventCounterCollector.Tests\EventCounterCollector.Tests.csproj", "{BECFC6B1-E04E-431C-A4D9-6F330F7DE22D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HostingStartup.Net45.Tests", "WEB\Src\HostingStartup\HostingStartup.Net45.Tests\HostingStartup.Net45.Tests.csproj", "{9AB6BDFD-253C-4C97-8BB8-7234ADFCB601}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Filtering.Shared", "WEB\Src\PerformanceCollector\Filtering.Shared\Filtering.Shared.shproj", "{568AEB4F-BA4C-47A5-9FA3-68F06CD11FED}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Perf.NetCore.Tests", "WEB\Src\PerformanceCollector\NetCore.Tests\Perf.NetCore.Tests.csproj", "{8F641C0B-A57A-43EC-B91F-4258F6DC0CD5}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Perf-NetCore20.Tests", "WEB\Src\PerformanceCollector\NetCore20.Tests\Perf-NetCore20.Tests\Perf-NetCore20.Tests.csproj", "{07620299-B0E7-44BB-BE85-C4D1B25104F6}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Perf.Net45.Tests", "WEB\Src\PerformanceCollector\Perf.Net45.Tests\Perf.Net45.Tests.csproj", "{F254D4FB-428D-408E-8251-39BCA7B4B5CE}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Perf.Shared", "WEB\Src\PerformanceCollector\Perf.Shared\Perf.Shared.shproj", "{A78F50D4-F518-4DCB-878B-526FD54CCA35}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Perf.Shared.NetFull", "WEB\Src\PerformanceCollector\Perf.Shared.NetFull\Perf.Shared.NetFull.shproj", "{85238238-5EF0-40FA-AD3E-BD4B12A3DD1A}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Perf.Shared.NetStandard", "WEB\Src\PerformanceCollector\Perf.Shared.NetStandard\Perf.Shared.NetStandard.shproj", "{D13C3EC7-B300-4158-9054-216156B203BE}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Perf.Shared.NetStandard.Stubs", "WEB\Src\PerformanceCollector\Perf.Shared.NetStandard.Stubs\Perf.Shared.NetStandard.Stubs.shproj", "{30A45441-0849-48FE-AD37-5D29D0E3068A}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Perf.Shared.NetStandard16.Stubs", "WEB\Src\PerformanceCollector\Perf.Shared.NetStandard16.Stubs\Perf.Shared.NetStandard16.Stubs.shproj", "{76B21FAA-270D-47DE-B14B-BEC87EDC34F1}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Perf.Shared.NetStandard20", "WEB\Src\PerformanceCollector\Perf.Shared.NetStandard20\Perf.Shared.NetStandard20.shproj", "{A8BA3BD0-19CE-488D-B2BD-0B9B677F4E03}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Perf.Shared.NetStandard20Net45", "WEB\Src\PerformanceCollector\Perf.Shared.NetStandard20Net45\Perf.Shared.NetStandard20Net45.shproj", "{054C25DC-E545-4712-95C4-81F30CF65CE8}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Perf.Shared.Tests", "WEB\Src\PerformanceCollector\Perf.Shared.Tests\Perf.Shared.Tests.shproj", "{9B524BD3-682D-4B6F-9251-D4B2911DF0FD}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Web.Net45.Tests", "WEB\Src\Web\Web.Net45.Tests\Web.Net45.Tests.csproj", "{F71138BB-B3F8-4767-B394-857B0776038E}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Web.Shared", "WEB\Src\Web\Web.Shared.Net\Web.Shared.shproj", "{395E03BB-D061-4C9D-9D47-18676566444D}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Web.Shared.Net.Tests", "WEB\Src\Web\Web.Shared.Net.Tests\Web.Shared.Net.Tests.shproj", "{AC2E85BB-05F7-43CB-B966-3611CCF47156}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WindowsServer.Net45.Tests", "WEB\Src\WindowsServer\WindowsServer.Net45.Tests\WindowsServer.Net45.Tests.csproj", "{F05EB480-B209-47DD-90E3-1DDC47EFC579}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WindowsServer.NetCore.Tests", "WEB\Src\WindowsServer\WindowsServer.NetCore.Tests\WindowsServer.NetCore.Tests.csproj", "{74051BFB-87ED-4D99-927F-C40E7717E4E5}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "WindowsServer.Shared", "WEB\Src\WindowsServer\WindowsServer.Shared\WindowsServer.Shared.shproj", "{579F42E8-B711-411E-BE52-4A3FD208507F}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "WindowsServer.Shared.Tests", "WEB\Src\WindowsServer\WindowsServer.Shared.Tests\WindowsServer.Shared.Tests.shproj", "{7916AE39-AE89-4886-8842-33AC9883905A}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DiagnosticSourceListener.netcoreapp1.Tests", "LOGGING\test\DiagnosticSourceListener.netcoreapp10.Tests\DiagnosticSourceListener.netcoreapp1.Tests.csproj", "{7CBC11F0-9D80-458F-A8DA-BF45EA648917}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EtwCollector.Net46.Tests", "LOGGING\test\EtwCollector.Net46.Tests\EtwCollector.Net46.Tests.csproj", "{46167FB8-2B4B-40B4-ACB3-B20615B14682}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EventSourceListener.netcoreapp10.Tests", "LOGGING\test\EventSourceListener.netcoreapp10.Tests\EventSourceListener.netcoreapp10.Tests.csproj", "{6673D8EC-04F3-491F-B3C4-5C26C1228F80}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ILogger.NetStandard.Tests", "LOGGING\test\ILogger.NetStandard.Tests\ILogger.NetStandard.Tests.csproj", "{108411B2-F1F8-48CD-B373-44A9ECCE7FEE}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Log4NetAppender.Net45.Tests", "LOGGING\test\Log4NetAppender.Net45.Tests\Log4NetAppender.Net45.Tests.csproj", "{547AFF05-FB87-41FB-ACDA-B5429F89727C}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Log4NetAppender.NetCoreApp10.Tests", "LOGGING\test\Log4NetAppender.NetCoreApp10.Tests\Log4NetAppender.NetCoreApp10.Tests.csproj", "{AC88FC19-68DC-41E5-8AE7-2567C5D7B58D}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NLogTarget.Net45.Tests", "LOGGING\test\NLogTarget.Net45.Tests\NLogTarget.Net45.Tests.csproj", "{782C7465-F521-42AA-A4DE-9ADD727CBC05}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NLogTarget.NetCoreApp10.Tests", "LOGGING\test\NLogTarget.NetCoreApp10.Tests\NLogTarget.NetCoreApp10.Tests.csproj", "{CFD15B50-0555-49FD-8B3E-87D97074A251}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TraceListener.Net45.Tests", "LOGGING\test\TraceListener.Net45.Tests\TraceListener.Net45.Tests.csproj", "{D57AD915-7C54-405A-BC0B-299983089C7C}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TraceListener.netcoreapp10.Tests", "LOGGING\test\TraceListener.netcoreapp10.Tests\TraceListener.netcoreapp10.Tests.csproj", "{11CF7798-376B-477F-B160-9A226E8E9E19}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "L) GenericTests", "L) GenericTests", "{D2A0AA36-57F7-436C-A7AF-7322927F1734}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Xdt.Tests", "LOGGING\test\Xdt.Tests\Xdt.Tests.csproj", "{262792BF-31A8-4FCD-BBC7-341EB29FAE96}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "TestFramework.Shared.Logging", "LOGGING\test\CommonTestShared\TestFramework.Shared.Logging.shproj", "{3B9AB7FA-562D-4E4E-86E3-3348426BC0D9}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "TestFramework.Shared.Logging2", "LOGGING\test\Shared\TestFramework.Shared.Logging2.shproj", "{FA775630-7917-4A99-A78C-FBA46EDF685C}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.ApplicationInsights.AspNetCore.Tests", "NETCORE\test\Microsoft.ApplicationInsights.AspNetCore.Tests\Microsoft.ApplicationInsights.AspNetCore.Tests.csproj", "{058A0843-A95F-4B0D-91DB-33B9D3FD7324}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.ApplicationInsights.WorkerService.Tests", "NETCORE\test\Microsoft.ApplicationInsights.WorkerService.Tests\Microsoft.ApplicationInsights.WorkerService.Tests.csproj", "{B90EDEA5-3CC8-4282-80A0-7116905E2427}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EmptyApp.FunctionalTests10", "NETCORE\test\EmptyApp.FunctionalTests\EmptyApp.FunctionalTests10.csproj", "{B55BED30-76D0-4E69-966B-344032B3F68D}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EmptyApp20.FunctionalTests20", "NETCORE\test\EmptyApp20.FunctionalTests\EmptyApp20.FunctionalTests20.csproj", "{8C764C9F-1078-47AF-87B8-AF62C7CD6447}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FunctionalTestUtils", "NETCORE\test\FunctionalTestUtils\FunctionalTestUtils.csproj", "{28A848A7-AD54-46EA-9A37-10683591F963}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FunctionalTestUtils20", "NETCORE\test\FunctionalTestUtils20\FunctionalTestUtils20.csproj", "{CF1818F5-CB8E-41A2-B3A8-344A80B79CEC}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MVCFramework.FunctionalTests10", "NETCORE\test\MVCFramework.FunctionalTests\MVCFramework.FunctionalTests10.csproj", "{B599F093-17ED-49A7-A3C0-1419CEE2480B}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MVCFramework20.FunctionalTests20", "NETCORE\test\MVCFramework20.FunctionalTests\MVCFramework20.FunctionalTests20.csproj", "{BCF933FA-3E6A-41C2-874A-E25195D6D0E8}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WebApi.FunctionalTests10", "NETCORE\test\WebApi.FunctionalTests\WebApi.FunctionalTests10.csproj", "{12660582-2FB1-4849-85CB-1C42FA0E2C7C}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WebApi20.FunctionalTests20", "NETCORE\test\WebApi20.FunctionalTests\WebApi20.FunctionalTests20.csproj", "{4871B8AC-FB79-4D3D-940D-80E796110359}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ApplicationInsightsTypes", "NETCORE\test\ApplicationInsightsTypes\ApplicationInsightsTypes.csproj", "{3D7258E3-5DDC-45A4-A457-9AA3BCC92DE7}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TestApp30", "NETCORE\test\TestApp30\TestApp30.csproj", "{E9D9D625-D7C0-4DDE-8701-ED7747D4B96E}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TestApp30.Tests30", "NETCORE\test\TestApp30.Tests\TestApp30.Tests30.csproj", "{72489742-5F18-4C99-889E-3A8102D8AC42}"
EndProject
Global
GlobalSection(SharedMSBuildProjectFiles) = preSolution
WEB\Src\PerformanceCollector\Perf.Shared.NetStandard20Net45\Perf.Shared.NetStandard20Net45.projitems*{054c25dc-e545-4712-95c4-81f30cf65ce8}*SharedItemsImports = 13
WEB\Src\DependencyCollector\Shared.Tests\DependencyCollector.Shared.Tests.projitems*{257fce5a-0779-45a5-b541-0ce43d79d009}*SharedItemsImports = 4
WEB\Src\TestFramework\Shared\TestFramework.Shared.projitems*{257fce5a-0779-45a5-b541-0ce43d79d009}*SharedItemsImports = 4
WEB\Src\PerformanceCollector\Perf.Shared.NetStandard.Stubs\Perf.Shared.NetStandard.Stubs.projitems*{30a45441-0849-48fe-ad37-5d29d0e3068a}*SharedItemsImports = 13
WEB\Src\Web\Web.Shared.Net\Web.Shared.Net.projitems*{395e03bb-d061-4c9d-9d47-18676566444d}*SharedItemsImports = 13
LOGGING\test\CommonTestShared\CommonTestShared.projitems*{3b9ab7fa-562d-4e4e-86e3-3348426bc0d9}*SharedItemsImports = 13
WEB\Src\PerformanceCollector\Filtering.Shared\Filtering.Shared.projitems*{568aeb4f-ba4c-47a5-9fa3-68f06cd11fed}*SharedItemsImports = 13
WEB\Src\WindowsServer\WindowsServer.Shared\WindowsServer.Shared.projitems*{579f42e8-b711-411e-be52-4a3fd208507f}*SharedItemsImports = 13
LOGGING\src\CommonShared\CommonShared.projitems*{587b624b-8c64-498e-93d7-a2d2abc17eab}*SharedItemsImports = 13
WEB\Src\DependencyCollector\Shared\DependencyCollector.Shared.projitems*{669e7e58-072d-4b0a-a4dd-4eb2ae2ea4d4}*SharedItemsImports = 13
WEB\Src\PerformanceCollector\Perf.Shared.NetStandard16.Stubs\Perf.Shared.NetStandard16.Stubs.projitems*{76b21faa-270d-47de-b14b-bec87edc34f1}*SharedItemsImports = 13
WEB\Src\WindowsServer\WindowsServer.Shared.Tests\WindowsServer.Shared.Tests.projitems*{7916ae39-ae89-4886-8842-33ac9883905a}*SharedItemsImports = 13
WEB\Src\PerformanceCollector\Perf.Shared.NetFull\Perf.Shared.NetFull.projitems*{85238238-5ef0-40fa-ad3e-bd4b12a3dd1a}*SharedItemsImports = 13
BASE\src\Common\Common\Common.projitems*{936af739-4297-4016-9d70-4280042709be}*SharedItemsImports = 13
WEB\Src\TestFramework\Shared\TestFramework.Shared.projitems*{9718f051-147f-4f5f-9ff3-c926430efcf7}*SharedItemsImports = 13
WEB\Src\PerformanceCollector\Perf.Shared.Tests\Perf.Shared.Tests.projitems*{9b524bd3-682d-4b6f-9251-d4b2911df0fd}*SharedItemsImports = 13
WEB\Src\PerformanceCollector\Perf.Shared\Perf.Shared.projitems*{a78f50d4-f518-4dcb-878b-526fd54cca35}*SharedItemsImports = 13
WEB\Src\PerformanceCollector\Perf.Shared.NetStandard20\Perf.Shared.NetStandard20.projitems*{a8ba3bd0-19ce-488d-b2bd-0b9b677f4e03}*SharedItemsImports = 13
LOGGING\src\EventSource.Shared\EventSource.Shared\EventSource.Shared.projitems*{a964de6d-9750-4013-8be2-79c2afc056e5}*SharedItemsImports = 13
WEB\Src\Web\Web.Shared.Net.Tests\Web.Shared.Net.Tests.projitems*{ac2e85bb-05f7-43cb-b966-3611ccf47156}*SharedItemsImports = 13
WEB\Src\DependencyCollector\Shared.Tests\DependencyCollector.Shared.Tests.projitems*{ace58393-3419-4fca-87cc-c33eb756c7e4}*SharedItemsImports = 13
BASE\Test\Microsoft.ApplicationInsights.Test\Shared\Microsoft.ApplicationInsights.Shared.Tests.projitems*{c4a0db5b-0988-4e04-b9b8-bcf3b0842000}*SharedItemsImports = 13
BASE\Test\ServerTelemetryChannel.Test\net45.Shared.Tests\net45.Shared.Tests.projitems*{c5a3f18d-1426-4941-9d81-d21062a2b8f2}*SharedItemsImports = 13
BASE\Test\ServerTelemetryChannel.Test\Shared.Tests\Shared.Tests.projitems*{c5a3f18f-1426-4941-9d81-d21062a2b8f2}*SharedItemsImports = 13
WEB\Src\Common\Common.projitems*{ccab7a34-8dc5-4a6f-b637-46ceba93c687}*SharedItemsImports = 13
WEB\Src\PerformanceCollector\Perf.Shared.NetStandard\Perf.Shared.NetStandard.projitems*{d13c3ec7-b300-4158-9054-216156b203be}*SharedItemsImports = 13
NETCORE\src\Shared\Shared.projitems*{d56f2979-d6bc-4ef2-bb9b-4077b3290599}*SharedItemsImports = 13
WEB\Src\TestFramework\Shared\TestFramework.Shared.projitems*{f05eb480-b209-47dd-90e3-1ddc47efc579}*SharedItemsImports = 4
WEB\Src\WindowsServer\WindowsServer.Shared.Tests\WindowsServer.Shared.Tests.projitems*{f05eb480-b209-47dd-90e3-1ddc47efc579}*SharedItemsImports = 4
WEB\Src\PerformanceCollector\Perf.Shared.Tests\Perf.Shared.Tests.projitems*{f254d4fb-428d-408e-8251-39bca7b4b5ce}*SharedItemsImports = 4
WEB\Src\TestFramework\Shared\TestFramework.Shared.projitems*{f254d4fb-428d-408e-8251-39bca7b4b5ce}*SharedItemsImports = 4
WEB\Src\TestFramework\Shared\TestFramework.Shared.projitems*{f71138bb-b3f8-4767-b394-857b0776038e}*SharedItemsImports = 4
WEB\Src\Web\Web.Shared.Net.Tests\Web.Shared.Net.Tests.projitems*{f71138bb-b3f8-4767-b394-857b0776038e}*SharedItemsImports = 4
BASE\Test\TestFramework\Shared\TestFramework.Shared.projitems*{f76c6cbd-29b0-4564-bdcb-c969f8fec136}*SharedItemsImports = 13
LOGGING\test\Shared\Adapters.Shared.Tests.projitems*{fa775630-7917-4a99-a78c-fba46edf685c}*SharedItemsImports = 13
EndGlobalSection
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{E3D160E8-7F8C-416F-946F-6FDFC6787461}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E3D160E8-7F8C-416F-946F-6FDFC6787461}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E3D160E8-7F8C-416F-946F-6FDFC6787461}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E3D160E8-7F8C-416F-946F-6FDFC6787461}.Release|Any CPU.Build.0 = Release|Any CPU
{C30A7EB8-A86C-49EE-927E-7D9E03572E82}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C30A7EB8-A86C-49EE-927E-7D9E03572E82}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C30A7EB8-A86C-49EE-927E-7D9E03572E82}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C30A7EB8-A86C-49EE-927E-7D9E03572E82}.Release|Any CPU.Build.0 = Release|Any CPU
{96A6E04E-CEDA-4C30-8ECA-48113382AFBA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{96A6E04E-CEDA-4C30-8ECA-48113382AFBA}.Debug|Any CPU.Build.0 = Debug|Any CPU
{96A6E04E-CEDA-4C30-8ECA-48113382AFBA}.Release|Any CPU.ActiveCfg = Release|Any CPU
{96A6E04E-CEDA-4C30-8ECA-48113382AFBA}.Release|Any CPU.Build.0 = Release|Any CPU
{13335EB8-3936-407A-9363-1C428318BEA8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{13335EB8-3936-407A-9363-1C428318BEA8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{13335EB8-3936-407A-9363-1C428318BEA8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{13335EB8-3936-407A-9363-1C428318BEA8}.Release|Any CPU.Build.0 = Release|Any CPU
{DEEAF599-83F9-4A05-ADD6-F612CDABE570}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DEEAF599-83F9-4A05-ADD6-F612CDABE570}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DEEAF599-83F9-4A05-ADD6-F612CDABE570}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DEEAF599-83F9-4A05-ADD6-F612CDABE570}.Release|Any CPU.Build.0 = Release|Any CPU
{9DC5C5E5-FC37-4E54-81FD-AA42BB934E9B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9DC5C5E5-FC37-4E54-81FD-AA42BB934E9B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9DC5C5E5-FC37-4E54-81FD-AA42BB934E9B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9DC5C5E5-FC37-4E54-81FD-AA42BB934E9B}.Release|Any CPU.Build.0 = Release|Any CPU
{8293BC71-7DDC-4DD1-8807-280EEF7E752D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8293BC71-7DDC-4DD1-8807-280EEF7E752D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8293BC71-7DDC-4DD1-8807-280EEF7E752D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8293BC71-7DDC-4DD1-8807-280EEF7E752D}.Release|Any CPU.Build.0 = Release|Any CPU
{7B5D95EE-50EE-4222-A03C-FAE5905B3DFD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7B5D95EE-50EE-4222-A03C-FAE5905B3DFD}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7B5D95EE-50EE-4222-A03C-FAE5905B3DFD}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7B5D95EE-50EE-4222-A03C-FAE5905B3DFD}.Release|Any CPU.Build.0 = Release|Any CPU
{2E283031-425B-421F-9E81-34ABFEFAB618}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2E283031-425B-421F-9E81-34ABFEFAB618}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2E283031-425B-421F-9E81-34ABFEFAB618}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2E283031-425B-421F-9E81-34ABFEFAB618}.Release|Any CPU.Build.0 = Release|Any CPU
{1B0F54BF-078A-421C-9708-2D817D4BCE30}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1B0F54BF-078A-421C-9708-2D817D4BCE30}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1B0F54BF-078A-421C-9708-2D817D4BCE30}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1B0F54BF-078A-421C-9708-2D817D4BCE30}.Release|Any CPU.Build.0 = Release|Any CPU
{52B3C054-C686-4BB8-A4B7-9E8D6C49491F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{52B3C054-C686-4BB8-A4B7-9E8D6C49491F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{52B3C054-C686-4BB8-A4B7-9E8D6C49491F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{52B3C054-C686-4BB8-A4B7-9E8D6C49491F}.Release|Any CPU.Build.0 = Release|Any CPU
{67291093-4B5F-4CA5-A811-B8A1DCBE3F1F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{67291093-4B5F-4CA5-A811-B8A1DCBE3F1F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{67291093-4B5F-4CA5-A811-B8A1DCBE3F1F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{67291093-4B5F-4CA5-A811-B8A1DCBE3F1F}.Release|Any CPU.Build.0 = Release|Any CPU
{3774003C-91FD-4D79-99C7-9BEAC5B9A48E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3774003C-91FD-4D79-99C7-9BEAC5B9A48E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3774003C-91FD-4D79-99C7-9BEAC5B9A48E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3774003C-91FD-4D79-99C7-9BEAC5B9A48E}.Release|Any CPU.Build.0 = Release|Any CPU
{63B8FDA7-2FF5-4A20-8DE7-EBB036012A54}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{63B8FDA7-2FF5-4A20-8DE7-EBB036012A54}.Debug|Any CPU.Build.0 = Debug|Any CPU
{63B8FDA7-2FF5-4A20-8DE7-EBB036012A54}.Release|Any CPU.ActiveCfg = Release|Any CPU
{63B8FDA7-2FF5-4A20-8DE7-EBB036012A54}.Release|Any CPU.Build.0 = Release|Any CPU
{2612AC44-5FF3-4533-B5A5-E5DBF96F5C83}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2612AC44-5FF3-4533-B5A5-E5DBF96F5C83}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2612AC44-5FF3-4533-B5A5-E5DBF96F5C83}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2612AC44-5FF3-4533-B5A5-E5DBF96F5C83}.Release|Any CPU.Build.0 = Release|Any CPU
{AC399F09-B465-4CFD-8D82-F1D1C5C9347E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{AC399F09-B465-4CFD-8D82-F1D1C5C9347E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{AC399F09-B465-4CFD-8D82-F1D1C5C9347E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{AC399F09-B465-4CFD-8D82-F1D1C5C9347E}.Release|Any CPU.Build.0 = Release|Any CPU
{3CAB7F66-3CC4-4B46-9B0D-765C460FE2BF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3CAB7F66-3CC4-4B46-9B0D-765C460FE2BF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3CAB7F66-3CC4-4B46-9B0D-765C460FE2BF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3CAB7F66-3CC4-4B46-9B0D-765C460FE2BF}.Release|Any CPU.Build.0 = Release|Any CPU
{4B0BC3B7-C7FC-4333-9E28-5790D9153F07}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4B0BC3B7-C7FC-4333-9E28-5790D9153F07}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4B0BC3B7-C7FC-4333-9E28-5790D9153F07}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4B0BC3B7-C7FC-4333-9E28-5790D9153F07}.Release|Any CPU.Build.0 = Release|Any CPU
{0927E682-4A56-45B6-8125-94FA066B2F57}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0927E682-4A56-45B6-8125-94FA066B2F57}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0927E682-4A56-45B6-8125-94FA066B2F57}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0927E682-4A56-45B6-8125-94FA066B2F57}.Release|Any CPU.Build.0 = Release|Any CPU
{0927E682-4A56-46B6-8125-94FA066B2F57}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0927E682-4A56-46B6-8125-94FA066B2F57}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0927E682-4A56-46B6-8125-94FA066B2F57}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0927E682-4A56-46B6-8125-94FA066B2F57}.Release|Any CPU.Build.0 = Release|Any CPU
{ABFE623D-9276-4559-90DC-197EA32A0E21}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{ABFE623D-9276-4559-90DC-197EA32A0E21}.Debug|Any CPU.Build.0 = Debug|Any CPU
{ABFE623D-9276-4559-90DC-197EA32A0E21}.Release|Any CPU.ActiveCfg = Release|Any CPU
{ABFE623D-9276-4559-90DC-197EA32A0E21}.Release|Any CPU.Build.0 = Release|Any CPU
{2759BC71-7F47-44DA-8579-AE2D8C8C684D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2759BC71-7F47-44DA-8579-AE2D8C8C684D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2759BC71-7F47-44DA-8579-AE2D8C8C684D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2759BC71-7F47-44DA-8579-AE2D8C8C684D}.Release|Any CPU.Build.0 = Release|Any CPU
{DD9659BE-7C0F-4298-82B2-5E957F95977A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DD9659BE-7C0F-4298-82B2-5E957F95977A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DD9659BE-7C0F-4298-82B2-5E957F95977A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DD9659BE-7C0F-4298-82B2-5E957F95977A}.Release|Any CPU.Build.0 = Release|Any CPU
{037DD64B-F486-4B53-A83D-7E34A3214B4D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{037DD64B-F486-4B53-A83D-7E34A3214B4D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{037DD64B-F486-4B53-A83D-7E34A3214B4D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{037DD64B-F486-4B53-A83D-7E34A3214B4D}.Release|Any CPU.Build.0 = Release|Any CPU
{14FA551E-886A-4D1B-B716-567EB4954C8E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{14FA551E-886A-4D1B-B716-567EB4954C8E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{14FA551E-886A-4D1B-B716-567EB4954C8E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{14FA551E-886A-4D1B-B716-567EB4954C8E}.Release|Any CPU.Build.0 = Release|Any CPU
{21CB9A8A-F25B-4DEB-92CB-ACB6920EB8BC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{21CB9A8A-F25B-4DEB-92CB-ACB6920EB8BC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{21CB9A8A-F25B-4DEB-92CB-ACB6920EB8BC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{21CB9A8A-F25B-4DEB-92CB-ACB6920EB8BC}.Release|Any CPU.Build.0 = Release|Any CPU
{257FCE5A-0779-45A5-B541-0CE43D79D009}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{257FCE5A-0779-45A5-B541-0CE43D79D009}.Debug|Any CPU.Build.0 = Debug|Any CPU
{257FCE5A-0779-45A5-B541-0CE43D79D009}.Release|Any CPU.ActiveCfg = Release|Any CPU
{257FCE5A-0779-45A5-B541-0CE43D79D009}.Release|Any CPU.Build.0 = Release|Any CPU
{BF5C70AB-4DCF-499D-93B3-B6F036DE5CCE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BF5C70AB-4DCF-499D-93B3-B6F036DE5CCE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BF5C70AB-4DCF-499D-93B3-B6F036DE5CCE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BF5C70AB-4DCF-499D-93B3-B6F036DE5CCE}.Release|Any CPU.Build.0 = Release|Any CPU
{BECFC6B1-E04E-431C-A4D9-6F330F7DE22D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BECFC6B1-E04E-431C-A4D9-6F330F7DE22D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BECFC6B1-E04E-431C-A4D9-6F330F7DE22D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BECFC6B1-E04E-431C-A4D9-6F330F7DE22D}.Release|Any CPU.Build.0 = Release|Any CPU
{9AB6BDFD-253C-4C97-8BB8-7234ADFCB601}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9AB6BDFD-253C-4C97-8BB8-7234ADFCB601}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9AB6BDFD-253C-4C97-8BB8-7234ADFCB601}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9AB6BDFD-253C-4C97-8BB8-7234ADFCB601}.Release|Any CPU.Build.0 = Release|Any CPU
{8F641C0B-A57A-43EC-B91F-4258F6DC0CD5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8F641C0B-A57A-43EC-B91F-4258F6DC0CD5}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8F641C0B-A57A-43EC-B91F-4258F6DC0CD5}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8F641C0B-A57A-43EC-B91F-4258F6DC0CD5}.Release|Any CPU.Build.0 = Release|Any CPU
{07620299-B0E7-44BB-BE85-C4D1B25104F6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{07620299-B0E7-44BB-BE85-C4D1B25104F6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{07620299-B0E7-44BB-BE85-C4D1B25104F6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{07620299-B0E7-44BB-BE85-C4D1B25104F6}.Release|Any CPU.Build.0 = Release|Any CPU
{F254D4FB-428D-408E-8251-39BCA7B4B5CE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F254D4FB-428D-408E-8251-39BCA7B4B5CE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F254D4FB-428D-408E-8251-39BCA7B4B5CE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F254D4FB-428D-408E-8251-39BCA7B4B5CE}.Release|Any CPU.Build.0 = Release|Any CPU
{F71138BB-B3F8-4767-B394-857B0776038E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F71138BB-B3F8-4767-B394-857B0776038E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F71138BB-B3F8-4767-B394-857B0776038E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F71138BB-B3F8-4767-B394-857B0776038E}.Release|Any CPU.Build.0 = Release|Any CPU
{F05EB480-B209-47DD-90E3-1DDC47EFC579}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F05EB480-B209-47DD-90E3-1DDC47EFC579}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F05EB480-B209-47DD-90E3-1DDC47EFC579}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F05EB480-B209-47DD-90E3-1DDC47EFC579}.Release|Any CPU.Build.0 = Release|Any CPU
{74051BFB-87ED-4D99-927F-C40E7717E4E5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{74051BFB-87ED-4D99-927F-C40E7717E4E5}.Debug|Any CPU.Build.0 = Debug|Any CPU
{74051BFB-87ED-4D99-927F-C40E7717E4E5}.Release|Any CPU.ActiveCfg = Release|Any CPU
{74051BFB-87ED-4D99-927F-C40E7717E4E5}.Release|Any CPU.Build.0 = Release|Any CPU
{7CBC11F0-9D80-458F-A8DA-BF45EA648917}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7CBC11F0-9D80-458F-A8DA-BF45EA648917}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7CBC11F0-9D80-458F-A8DA-BF45EA648917}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7CBC11F0-9D80-458F-A8DA-BF45EA648917}.Release|Any CPU.Build.0 = Release|Any CPU
{46167FB8-2B4B-40B4-ACB3-B20615B14682}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{46167FB8-2B4B-40B4-ACB3-B20615B14682}.Debug|Any CPU.Build.0 = Debug|Any CPU
{46167FB8-2B4B-40B4-ACB3-B20615B14682}.Release|Any CPU.ActiveCfg = Release|Any CPU
{46167FB8-2B4B-40B4-ACB3-B20615B14682}.Release|Any CPU.Build.0 = Release|Any CPU
{6673D8EC-04F3-491F-B3C4-5C26C1228F80}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6673D8EC-04F3-491F-B3C4-5C26C1228F80}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6673D8EC-04F3-491F-B3C4-5C26C1228F80}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6673D8EC-04F3-491F-B3C4-5C26C1228F80}.Release|Any CPU.Build.0 = Release|Any CPU
{108411B2-F1F8-48CD-B373-44A9ECCE7FEE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{108411B2-F1F8-48CD-B373-44A9ECCE7FEE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{108411B2-F1F8-48CD-B373-44A9ECCE7FEE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{108411B2-F1F8-48CD-B373-44A9ECCE7FEE}.Release|Any CPU.Build.0 = Release|Any CPU
{547AFF05-FB87-41FB-ACDA-B5429F89727C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{547AFF05-FB87-41FB-ACDA-B5429F89727C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{547AFF05-FB87-41FB-ACDA-B5429F89727C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{547AFF05-FB87-41FB-ACDA-B5429F89727C}.Release|Any CPU.Build.0 = Release|Any CPU
{AC88FC19-68DC-41E5-8AE7-2567C5D7B58D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{AC88FC19-68DC-41E5-8AE7-2567C5D7B58D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{AC88FC19-68DC-41E5-8AE7-2567C5D7B58D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{AC88FC19-68DC-41E5-8AE7-2567C5D7B58D}.Release|Any CPU.Build.0 = Release|Any CPU
{782C7465-F521-42AA-A4DE-9ADD727CBC05}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{782C7465-F521-42AA-A4DE-9ADD727CBC05}.Debug|Any CPU.Build.0 = Debug|Any CPU
{782C7465-F521-42AA-A4DE-9ADD727CBC05}.Release|Any CPU.ActiveCfg = Release|Any CPU
{782C7465-F521-42AA-A4DE-9ADD727CBC05}.Release|Any CPU.Build.0 = Release|Any CPU
{CFD15B50-0555-49FD-8B3E-87D97074A251}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{CFD15B50-0555-49FD-8B3E-87D97074A251}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CFD15B50-0555-49FD-8B3E-87D97074A251}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CFD15B50-0555-49FD-8B3E-87D97074A251}.Release|Any CPU.Build.0 = Release|Any CPU
{D57AD915-7C54-405A-BC0B-299983089C7C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D57AD915-7C54-405A-BC0B-299983089C7C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D57AD915-7C54-405A-BC0B-299983089C7C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D57AD915-7C54-405A-BC0B-299983089C7C}.Release|Any CPU.Build.0 = Release|Any CPU
{11CF7798-376B-477F-B160-9A226E8E9E19}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{11CF7798-376B-477F-B160-9A226E8E9E19}.Debug|Any CPU.Build.0 = Debug|Any CPU
{11CF7798-376B-477F-B160-9A226E8E9E19}.Release|Any CPU.ActiveCfg = Release|Any CPU
{11CF7798-376B-477F-B160-9A226E8E9E19}.Release|Any CPU.Build.0 = Release|Any CPU
{262792BF-31A8-4FCD-BBC7-341EB29FAE96}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{262792BF-31A8-4FCD-BBC7-341EB29FAE96}.Debug|Any CPU.Build.0 = Debug|Any CPU
{262792BF-31A8-4FCD-BBC7-341EB29FAE96}.Release|Any CPU.ActiveCfg = Release|Any CPU
{262792BF-31A8-4FCD-BBC7-341EB29FAE96}.Release|Any CPU.Build.0 = Release|Any CPU
{058A0843-A95F-4B0D-91DB-33B9D3FD7324}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{058A0843-A95F-4B0D-91DB-33B9D3FD7324}.Debug|Any CPU.Build.0 = Debug|Any CPU
{058A0843-A95F-4B0D-91DB-33B9D3FD7324}.Release|Any CPU.ActiveCfg = Release|Any CPU
{058A0843-A95F-4B0D-91DB-33B9D3FD7324}.Release|Any CPU.Build.0 = Release|Any CPU
{B90EDEA5-3CC8-4282-80A0-7116905E2427}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B90EDEA5-3CC8-4282-80A0-7116905E2427}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B90EDEA5-3CC8-4282-80A0-7116905E2427}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B90EDEA5-3CC8-4282-80A0-7116905E2427}.Release|Any CPU.Build.0 = Release|Any CPU
{B55BED30-76D0-4E69-966B-344032B3F68D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B55BED30-76D0-4E69-966B-344032B3F68D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B55BED30-76D0-4E69-966B-344032B3F68D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B55BED30-76D0-4E69-966B-344032B3F68D}.Release|Any CPU.Build.0 = Release|Any CPU
{8C764C9F-1078-47AF-87B8-AF62C7CD6447}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8C764C9F-1078-47AF-87B8-AF62C7CD6447}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8C764C9F-1078-47AF-87B8-AF62C7CD6447}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8C764C9F-1078-47AF-87B8-AF62C7CD6447}.Release|Any CPU.Build.0 = Release|Any CPU
{28A848A7-AD54-46EA-9A37-10683591F963}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{28A848A7-AD54-46EA-9A37-10683591F963}.Debug|Any CPU.Build.0 = Debug|Any CPU
{28A848A7-AD54-46EA-9A37-10683591F963}.Release|Any CPU.ActiveCfg = Release|Any CPU
{28A848A7-AD54-46EA-9A37-10683591F963}.Release|Any CPU.Build.0 = Release|Any CPU
{CF1818F5-CB8E-41A2-B3A8-344A80B79CEC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{CF1818F5-CB8E-41A2-B3A8-344A80B79CEC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CF1818F5-CB8E-41A2-B3A8-344A80B79CEC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CF1818F5-CB8E-41A2-B3A8-344A80B79CEC}.Release|Any CPU.Build.0 = Release|Any CPU
{B599F093-17ED-49A7-A3C0-1419CEE2480B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B599F093-17ED-49A7-A3C0-1419CEE2480B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B599F093-17ED-49A7-A3C0-1419CEE2480B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B599F093-17ED-49A7-A3C0-1419CEE2480B}.Release|Any CPU.Build.0 = Release|Any CPU
{BCF933FA-3E6A-41C2-874A-E25195D6D0E8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BCF933FA-3E6A-41C2-874A-E25195D6D0E8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BCF933FA-3E6A-41C2-874A-E25195D6D0E8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BCF933FA-3E6A-41C2-874A-E25195D6D0E8}.Release|Any CPU.Build.0 = Release|Any CPU
{12660582-2FB1-4849-85CB-1C42FA0E2C7C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{12660582-2FB1-4849-85CB-1C42FA0E2C7C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{12660582-2FB1-4849-85CB-1C42FA0E2C7C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{12660582-2FB1-4849-85CB-1C42FA0E2C7C}.Release|Any CPU.Build.0 = Release|Any CPU
{4871B8AC-FB79-4D3D-940D-80E796110359}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4871B8AC-FB79-4D3D-940D-80E796110359}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4871B8AC-FB79-4D3D-940D-80E796110359}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4871B8AC-FB79-4D3D-940D-80E796110359}.Release|Any CPU.Build.0 = Release|Any CPU
{3D7258E3-5DDC-45A4-A457-9AA3BCC92DE7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3D7258E3-5DDC-45A4-A457-9AA3BCC92DE7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3D7258E3-5DDC-45A4-A457-9AA3BCC92DE7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3D7258E3-5DDC-45A4-A457-9AA3BCC92DE7}.Release|Any CPU.Build.0 = Release|Any CPU
{E9D9D625-D7C0-4DDE-8701-ED7747D4B96E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E9D9D625-D7C0-4DDE-8701-ED7747D4B96E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E9D9D625-D7C0-4DDE-8701-ED7747D4B96E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E9D9D625-D7C0-4DDE-8701-ED7747D4B96E}.Release|Any CPU.Build.0 = Release|Any CPU
{72489742-5F18-4C99-889E-3A8102D8AC42}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{72489742-5F18-4C99-889E-3A8102D8AC42}.Debug|Any CPU.Build.0 = Debug|Any CPU
{72489742-5F18-4C99-889E-3A8102D8AC42}.Release|Any CPU.ActiveCfg = Release|Any CPU
{72489742-5F18-4C99-889E-3A8102D8AC42}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{E3D160E8-7F8C-416F-946F-6FDFC6787461} = {632FB9CE-540D-4451-9FF2-12E89C1492BD}
{C30A7EB8-A86C-49EE-927E-7D9E03572E82} = {FBAFD313-0139-4DA3-BCB3-EE54DC3B6CCD}
{96A6E04E-CEDA-4C30-8ECA-48113382AFBA} = {005BD823-60AF-406E-AC20-842D7653FE60}
{13335EB8-3936-407A-9363-1C428318BEA8} = {DFCBB4ED-976C-4239-BCAF-8AA21E684E8C}
{DEEAF599-83F9-4A05-ADD6-F612CDABE570} = {7EC1F6B8-9F94-4947-B596-EB3726C53AE0}
{9DC5C5E5-FC37-4E54-81FD-AA42BB934E9B} = {3EDBC945-E531-4CEE-A038-A6AE1EF9AA96}
{8293BC71-7DDC-4DD1-8807-280EEF7E752D} = {07076842-9CAA-4B4A-8AEF-88DE88CD37AC}
{7B5D95EE-50EE-4222-A03C-FAE5905B3DFD} = {11AC7235-167E-40B5-B2E3-9CBF08700064}
{2E283031-425B-421F-9E81-34ABFEFAB618} = {60CDB555-C5FE-4010-A37B-014B04C5EAC3}
{1B0F54BF-078A-421C-9708-2D817D4BCE30} = {05E05465-F285-4689-BFC5-F78FC5761992}
{52B3C054-C686-4BB8-A4B7-9E8D6C49491F} = {DB0D10AF-7DA5-49CE-B90E-67F896BEED1C}
{67291093-4B5F-4CA5-A811-B8A1DCBE3F1F} = {477A1BA0-0155-404C-A6E0-C2409C0FFE70}
{3774003C-91FD-4D79-99C7-9BEAC5B9A48E} = {DDA01098-8272-4C5A-BB97-BCB4FA65CFE6}
{63B8FDA7-2FF5-4A20-8DE7-EBB036012A54} = {39474EE1-28E8-456E-889F-553F129411C8}
{2612AC44-5FF3-4533-B5A5-E5DBF96F5C83} = {AFEB7CAA-A8BF-4D03-A5CB-BFC5AE378201}
{AC399F09-B465-4CFD-8D82-F1D1C5C9347E} = {E9AEB857-E8AA-4ED6-A020-DF4D8486CEB0}
{3CAB7F66-3CC4-4B46-9B0D-765C460FE2BF} = {D8483C3E-C386-48AD-B935-700A54FDCF31}
{4B0BC3B7-C7FC-4333-9E28-5790D9153F07} = {632FB9CE-540D-4451-9FF2-12E89C1492BD}
{0927E682-4A56-45B6-8125-94FA066B2F57} = {632FB9CE-540D-4451-9FF2-12E89C1492BD}
{0927E682-4A56-46B6-8125-94FA066B2F57} = {632FB9CE-540D-4451-9FF2-12E89C1492BD}
{ABFE623D-9276-4559-90DC-197EA32A0E21} = {632FB9CE-540D-4451-9FF2-12E89C1492BD}
{C4A0DB5B-0988-4E04-B9B8-BCF3B0842000} = {632FB9CE-540D-4451-9FF2-12E89C1492BD}
{2759BC71-7F47-44DA-8579-AE2D8C8C684D} = {632FB9CE-540D-4451-9FF2-12E89C1492BD}
{C5A3F18D-1426-4941-9D81-D21062A2B8F2} = {FBAFD313-0139-4DA3-BCB3-EE54DC3B6CCD}
{DD9659BE-7C0F-4298-82B2-5E957F95977A} = {FBAFD313-0139-4DA3-BCB3-EE54DC3B6CCD}
{037DD64B-F486-4B53-A83D-7E34A3214B4D} = {FBAFD313-0139-4DA3-BCB3-EE54DC3B6CCD}
{14FA551E-886A-4D1B-B716-567EB4954C8E} = {FBAFD313-0139-4DA3-BCB3-EE54DC3B6CCD}
{C5A3F18F-1426-4941-9D81-D21062A2B8F2} = {FBAFD313-0139-4DA3-BCB3-EE54DC3B6CCD}
{21CB9A8A-F25B-4DEB-92CB-ACB6920EB8BC} = {FBAFD313-0139-4DA3-BCB3-EE54DC3B6CCD}
{257FCE5A-0779-45A5-B541-0CE43D79D009} = {005BD823-60AF-406E-AC20-842D7653FE60}
{BF5C70AB-4DCF-499D-93B3-B6F036DE5CCE} = {005BD823-60AF-406E-AC20-842D7653FE60}
{669E7E58-072D-4B0A-A4DD-4EB2AE2EA4D4} = {005BD823-60AF-406E-AC20-842D7653FE60}
{ACE58393-3419-4FCA-87CC-C33EB756C7E4} = {005BD823-60AF-406E-AC20-842D7653FE60}
{BECFC6B1-E04E-431C-A4D9-6F330F7DE22D} = {DFCBB4ED-976C-4239-BCAF-8AA21E684E8C}
{9AB6BDFD-253C-4C97-8BB8-7234ADFCB601} = {7EC1F6B8-9F94-4947-B596-EB3726C53AE0}
{568AEB4F-BA4C-47A5-9FA3-68F06CD11FED} = {3EDBC945-E531-4CEE-A038-A6AE1EF9AA96}
{8F641C0B-A57A-43EC-B91F-4258F6DC0CD5} = {3EDBC945-E531-4CEE-A038-A6AE1EF9AA96}
{07620299-B0E7-44BB-BE85-C4D1B25104F6} = {3EDBC945-E531-4CEE-A038-A6AE1EF9AA96}
{F254D4FB-428D-408E-8251-39BCA7B4B5CE} = {3EDBC945-E531-4CEE-A038-A6AE1EF9AA96}
{A78F50D4-F518-4DCB-878B-526FD54CCA35} = {3EDBC945-E531-4CEE-A038-A6AE1EF9AA96}
{85238238-5EF0-40FA-AD3E-BD4B12A3DD1A} = {3EDBC945-E531-4CEE-A038-A6AE1EF9AA96}
{D13C3EC7-B300-4158-9054-216156B203BE} = {3EDBC945-E531-4CEE-A038-A6AE1EF9AA96}
{30A45441-0849-48FE-AD37-5D29D0E3068A} = {3EDBC945-E531-4CEE-A038-A6AE1EF9AA96}
{76B21FAA-270D-47DE-B14B-BEC87EDC34F1} = {3EDBC945-E531-4CEE-A038-A6AE1EF9AA96}
{A8BA3BD0-19CE-488D-B2BD-0B9B677F4E03} = {3EDBC945-E531-4CEE-A038-A6AE1EF9AA96}
{054C25DC-E545-4712-95C4-81F30CF65CE8} = {3EDBC945-E531-4CEE-A038-A6AE1EF9AA96}
{9B524BD3-682D-4B6F-9251-D4B2911DF0FD} = {3EDBC945-E531-4CEE-A038-A6AE1EF9AA96}
{F71138BB-B3F8-4767-B394-857B0776038E} = {07076842-9CAA-4B4A-8AEF-88DE88CD37AC}
{395E03BB-D061-4C9D-9D47-18676566444D} = {07076842-9CAA-4B4A-8AEF-88DE88CD37AC}
{AC2E85BB-05F7-43CB-B966-3611CCF47156} = {07076842-9CAA-4B4A-8AEF-88DE88CD37AC}
{F05EB480-B209-47DD-90E3-1DDC47EFC579} = {11AC7235-167E-40B5-B2E3-9CBF08700064}
{74051BFB-87ED-4D99-927F-C40E7717E4E5} = {11AC7235-167E-40B5-B2E3-9CBF08700064}
{579F42E8-B711-411E-BE52-4A3FD208507F} = {11AC7235-167E-40B5-B2E3-9CBF08700064}
{7916AE39-AE89-4886-8842-33AC9883905A} = {11AC7235-167E-40B5-B2E3-9CBF08700064}
{7CBC11F0-9D80-458F-A8DA-BF45EA648917} = {60CDB555-C5FE-4010-A37B-014B04C5EAC3}
{46167FB8-2B4B-40B4-ACB3-B20615B14682} = {05E05465-F285-4689-BFC5-F78FC5761992}
{6673D8EC-04F3-491F-B3C4-5C26C1228F80} = {DB0D10AF-7DA5-49CE-B90E-67F896BEED1C}
{108411B2-F1F8-48CD-B373-44A9ECCE7FEE} = {477A1BA0-0155-404C-A6E0-C2409C0FFE70}
{547AFF05-FB87-41FB-ACDA-B5429F89727C} = {DDA01098-8272-4C5A-BB97-BCB4FA65CFE6}
{AC88FC19-68DC-41E5-8AE7-2567C5D7B58D} = {DDA01098-8272-4C5A-BB97-BCB4FA65CFE6}
{782C7465-F521-42AA-A4DE-9ADD727CBC05} = {39474EE1-28E8-456E-889F-553F129411C8}
{CFD15B50-0555-49FD-8B3E-87D97074A251} = {39474EE1-28E8-456E-889F-553F129411C8}
{D57AD915-7C54-405A-BC0B-299983089C7C} = {AFEB7CAA-A8BF-4D03-A5CB-BFC5AE378201}
{11CF7798-376B-477F-B160-9A226E8E9E19} = {AFEB7CAA-A8BF-4D03-A5CB-BFC5AE378201}
{262792BF-31A8-4FCD-BBC7-341EB29FAE96} = {D2A0AA36-57F7-436C-A7AF-7322927F1734}
{058A0843-A95F-4B0D-91DB-33B9D3FD7324} = {E9AEB857-E8AA-4ED6-A020-DF4D8486CEB0}
{B90EDEA5-3CC8-4282-80A0-7116905E2427} = {D8483C3E-C386-48AD-B935-700A54FDCF31}
{B55BED30-76D0-4E69-966B-344032B3F68D} = {E9AEB857-E8AA-4ED6-A020-DF4D8486CEB0}
{8C764C9F-1078-47AF-87B8-AF62C7CD6447} = {E9AEB857-E8AA-4ED6-A020-DF4D8486CEB0}
{28A848A7-AD54-46EA-9A37-10683591F963} = {E9AEB857-E8AA-4ED6-A020-DF4D8486CEB0}
{CF1818F5-CB8E-41A2-B3A8-344A80B79CEC} = {E9AEB857-E8AA-4ED6-A020-DF4D8486CEB0}
{B599F093-17ED-49A7-A3C0-1419CEE2480B} = {E9AEB857-E8AA-4ED6-A020-DF4D8486CEB0}
{BCF933FA-3E6A-41C2-874A-E25195D6D0E8} = {E9AEB857-E8AA-4ED6-A020-DF4D8486CEB0}
{12660582-2FB1-4849-85CB-1C42FA0E2C7C} = {E9AEB857-E8AA-4ED6-A020-DF4D8486CEB0}
{4871B8AC-FB79-4D3D-940D-80E796110359} = {E9AEB857-E8AA-4ED6-A020-DF4D8486CEB0}
{3D7258E3-5DDC-45A4-A457-9AA3BCC92DE7} = {E9AEB857-E8AA-4ED6-A020-DF4D8486CEB0}
{E9D9D625-D7C0-4DDE-8701-ED7747D4B96E} = {E9AEB857-E8AA-4ED6-A020-DF4D8486CEB0}
{72489742-5F18-4C99-889E-3A8102D8AC42} = {E9AEB857-E8AA-4ED6-A020-DF4D8486CEB0}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {0E0415AF-37CC-4999-8E5B-DD36F75BFD4D}
EndGlobalSection
EndGlobal

Просмотреть файл

@ -1,11 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<UsingTask TaskName="InjectXmlLanguage" TaskFactory="CodeTaskFactory" AssemblyFile="$(MSBuildToolsPath)\Microsoft.Build.Tasks.Core.dll">
<UsingTask TaskName="InjectXmlLanguage" TaskFactory="RoslynCodeTaskFactory" AssemblyFile="$(MSBuildToolsPath)\Microsoft.Build.Tasks.Core.dll">
<ParameterGroup>
<InputFiles ParameterType="Microsoft.Build.Framework.ITaskItem[]" Required="true" />
</ParameterGroup>
<Task>
<Reference Include="System" />
<!--<Reference Include="System" />-->
<Using Namespace="System" />
<Using Namespace="System.Diagnostics" />
<Using Namespace="System.IO" />
<Code Type="Fragment" Language="cs">

Просмотреть файл

@ -69,6 +69,10 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ILogger", "src\ILogger\ILog
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ILogger.NetStandard.Tests", "test\ILogger.NetStandard.Tests\ILogger.NetStandard.Tests.csproj", "{4C1B862F-8F19-4D0F-834D-694DDE0438AE}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".DependentProjects", ".DependentProjects", "{5D78454B-607D-481D-96E5-0E9EB323B027}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.ApplicationInsights", "..\BASE\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj", "{ED1E83B0-8656-4E2D-BB8B-158A84C45477}"
EndProject
Global
GlobalSection(SharedMSBuildProjectFiles) = preSolution
test\CommonTestShared\CommonTestShared.projitems*{3b9ab7fa-562d-4e4e-86e3-3348426bc0d9}*SharedItemsImports = 13
@ -247,6 +251,14 @@ Global
{4C1B862F-8F19-4D0F-834D-694DDE0438AE}.Release|Any CPU.Build.0 = Release|Any CPU
{4C1B862F-8F19-4D0F-834D-694DDE0438AE}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{4C1B862F-8F19-4D0F-834D-694DDE0438AE}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{ED1E83B0-8656-4E2D-BB8B-158A84C45477}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{ED1E83B0-8656-4E2D-BB8B-158A84C45477}.Debug|Any CPU.Build.0 = Debug|Any CPU
{ED1E83B0-8656-4E2D-BB8B-158A84C45477}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{ED1E83B0-8656-4E2D-BB8B-158A84C45477}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{ED1E83B0-8656-4E2D-BB8B-158A84C45477}.Release|Any CPU.ActiveCfg = Release|Any CPU
{ED1E83B0-8656-4E2D-BB8B-158A84C45477}.Release|Any CPU.Build.0 = Release|Any CPU
{ED1E83B0-8656-4E2D-BB8B-158A84C45477}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{ED1E83B0-8656-4E2D-BB8B-158A84C45477}.Release|Mixed Platforms.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
@ -275,6 +287,7 @@ Global
{F74826DB-53B1-4588-BD02-4DD25DCBF292} = {2FCC45B3-D820-405D-87FA-467C96465BB1}
{7D942802-E85E-4C3C-B97E-67A3867B7CBA} = {EE933574-C82B-4E59-A0D1-05328197B937}
{4C1B862F-8F19-4D0F-834D-694DDE0438AE} = {2FCC45B3-D820-405D-87FA-467C96465BB1}
{ED1E83B0-8656-4E2D-BB8B-158A84C45477} = {5D78454B-607D-481D-96E5-0E9EB323B027}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {AC8888B1-0E98-49D7-BE15-EB97A6261C0D}

Просмотреть файл

@ -7,7 +7,5 @@
</config>
<packageSources>
<add key="nuget.org" value="https://www.nuget.org/api/v2/" />
<add key="applicationinsights" value="https://www.myget.org/F/applicationinsights/api/v3/index.json" />
<add key="Net Core Feed" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/3.0.100-rc2-014277/nuget/v3/index.json" />
</packageSources>
</configuration>

Просмотреть файл

@ -51,7 +51,7 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.12.0-beta1" />
<ProjectReference Include="..\..\..\BASE\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj" />
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="4.6.0" />
</ItemGroup>

Просмотреть файл

@ -50,7 +50,7 @@
<PackageReference Include="Microsoft.Diagnostics.Tracing.EventRegister" Version="1.1.28">
<PrivateAssets>All</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.12.0-beta1" />
<ProjectReference Include="..\..\..\BASE\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj" />
<PackageReference Include="Microsoft.Diagnostics.Tracing.TraceEvent" Version="1.0.41" />
</ItemGroup>

Просмотреть файл

@ -52,7 +52,7 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.12.0-beta1" />
<ProjectReference Include="..\..\..\BASE\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj" />
<PackageReference Include="System.Diagnostics.Process" Version="4.1.0" />
</ItemGroup>

Просмотреть файл

@ -54,7 +54,7 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.12.0-beta1" />
<ProjectReference Include="..\..\..\BASE\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-18618-05">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>

Просмотреть файл

@ -44,7 +44,7 @@
<PackageReference Include="Microsoft.Diagnostics.Tracing.EventRegister" Version="1.1.28">
<PrivateAssets>All</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.12.0-beta1" />
<ProjectReference Include="..\..\..\BASE\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.3' ">

Просмотреть файл

@ -44,7 +44,7 @@
<PackageReference Include="Microsoft.Diagnostics.Tracing.EventRegister" Version="1.1.28">
<PrivateAssets>All</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.12.0-beta1" />
<ProjectReference Include="..\..\..\BASE\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.3' ">

Просмотреть файл

@ -44,7 +44,7 @@
<PackageReference Include="Microsoft.Diagnostics.Tracing.EventRegister" Version="1.1.28">
<PrivateAssets>All</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.12.0-beta1" />
<ProjectReference Include="..\..\..\BASE\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard1.3'">

Просмотреть файл

@ -11,7 +11,6 @@
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.1.0" />
<PackageReference Include="MSTest.TestAdapter" Version="1.4.0" />
<PackageReference Include="MSTest.TestFramework" Version="1.4.0" />
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.12.0-beta1" />
</ItemGroup>
<ItemGroup>

Просмотреть файл

@ -11,8 +11,8 @@
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.1.0" />
<PackageReference Include="MSTest.TestAdapter" Version="1.4.0" />
<PackageReference Include="MSTest.TestFramework" Version="1.4.0" />
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.12.0-beta1" />
<PackageReference Include="Microsoft.Diagnostics.Tracing.TraceEvent" Version="2.0.42" />
<ProjectReference Include="..\..\..\BASE\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj" />
<ProjectReference Include="..\..\src\EtwCollector\EtwCollector.csproj" />
<Reference Include="System.Net.Http" />
</ItemGroup>

Просмотреть файл

@ -18,7 +18,6 @@
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.1.0" />
<PackageReference Include="MSTest.TestAdapter" Version="1.4.0" />
<PackageReference Include="MSTest.TestFramework" Version="1.4.0" />
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.12.0-beta1" />
</ItemGroup>
<ItemGroup>

Просмотреть файл

@ -11,8 +11,8 @@
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.1.0" />
<PackageReference Include="MSTest.TestAdapter" Version="1.4.0" />
<PackageReference Include="MSTest.TestFramework" Version="1.4.0" />
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.12.0-beta1" />
<PackageReference Include="log4net" Version="2.0.8" />
<ProjectReference Include="..\..\..\BASE\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj" />
<ProjectReference Include="..\..\src\Log4NetAppender\Log4NetAppender.csproj" />
<Reference Include="System.Net.Http" />

Просмотреть файл

@ -17,7 +17,6 @@
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.1.0" />
<PackageReference Include="MSTest.TestAdapter" Version="1.4.0" />
<PackageReference Include="MSTest.TestFramework" Version="1.4.0" />
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.12.0-beta1" />
<PackageReference Include="log4net" Version="2.0.8" />
<ProjectReference Include="..\..\src\Log4NetAppender\Log4NetAppender.csproj" />
</ItemGroup>

Просмотреть файл

@ -11,8 +11,8 @@
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.1.0" />
<PackageReference Include="MSTest.TestAdapter" Version="1.4.0" />
<PackageReference Include="MSTest.TestFramework" Version="1.4.0" />
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.12.0-beta1" />
<PackageReference Include="NLog" Version="4.6.3" />
<ProjectReference Include="..\..\..\BASE\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj" />
<ProjectReference Include="..\..\src\NLogTarget\NLogTarget.csproj" />
<Reference Include="System.Net.Http" />
</ItemGroup>

Просмотреть файл

@ -16,7 +16,6 @@
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.1.0" />
<PackageReference Include="MSTest.TestAdapter" Version="1.4.0" />
<PackageReference Include="MSTest.TestFramework" Version="1.4.0" />
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.12.0-beta1" />
<PackageReference Include="NLog" Version="4.6.3" />
<ProjectReference Include="..\..\src\NLogTarget\NLogTarget.csproj" />
</ItemGroup>

Просмотреть файл

@ -16,8 +16,8 @@
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.1.0" />
<PackageReference Include="MSTest.TestAdapter" Version="1.4.0" />
<PackageReference Include="MSTest.TestFramework" Version="1.4.0" />
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.12.0-beta1" />
<PackageReference Include="log4net" Version="2.0.8" />
<ProjectReference Include="..\..\..\BASE\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj" />
<ProjectReference Include="..\..\src\TraceListener\TraceListener.csproj" />
<Reference Include="System.Net.Http" />

Просмотреть файл

@ -17,7 +17,6 @@
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.1.0" />
<PackageReference Include="MSTest.TestAdapter" Version="1.4.0" />
<PackageReference Include="MSTest.TestFramework" Version="1.4.0" />
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.12.0-beta1" />
<PackageReference Include="System.Diagnostics.TraceSource" Version="4.3.0" />
</ItemGroup>

Просмотреть файл

@ -11,7 +11,6 @@
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.1.0" />
<PackageReference Include="MSTest.TestAdapter" Version="1.4.0" />
<PackageReference Include="MSTest.TestFramework" Version="1.4.0" />
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.12.0-beta1" />
<PackageReference Include="Microsoft.Web.Xdt" Version="3.0.0" />
<Reference Include="System.Xml" />
<Reference Include="System.Xml.Linq" />
@ -88,6 +87,9 @@
<ItemGroup>
<EmbeddedResource Include="Resources\EtwCollector\TestDataSet.xml" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\BASE\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj" />
</ItemGroup>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), 'Test.props'))\Test.props" />

Просмотреть файл

@ -12,12 +12,13 @@ steps:
inputs:
command: "restore"
projects: "NETCORE/*.sln"
continueOnError: true
- task: DotNetCoreCLI@1
displayName: build all projects
inputs:
command: "build"
projects: "NETCORE/src/**/**.csproj"
projects: "NETCORE/*.sln"
arguments: "--configuration Release"
- task: DotNetCoreCLI@1

Просмотреть файл

@ -59,6 +59,22 @@ Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Common.NetCore", "src\Share
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.ApplicationInsights.WorkerService.Tests", "test\Microsoft.ApplicationInsights.WorkerService.Tests\Microsoft.ApplicationInsights.WorkerService.Tests.csproj", "{A41D3299-5E41-4B73-8C8E-DD64824BC9E6}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".DependentProjects", ".DependentProjects", "{042C2916-4BB7-4CCB-BD61-A8BAAB0129B9}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EventCounterCollector", "..\WEB\Src\EventCounterCollector\EventCounterCollector\EventCounterCollector.csproj", "{1056392C-387C-4530-BA3F-AA687EA453AE}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ILogger", "..\LOGGING\src\ILogger\ILogger.csproj", "{4A9EC531-F8B2-4CD1-BD6B-745F33E52E7B}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WindowsServer", "..\WEB\Src\WindowsServer\WindowsServer\WindowsServer.csproj", "{AF9287B2-0D23-4D85-9A3E-200A2A603278}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Perf", "..\WEB\Src\PerformanceCollector\PerformanceCollector\Perf.csproj", "{3C157FC2-2E52-45FC-87E8-76E4FCED4260}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DependencyCollector", "..\WEB\Src\DependencyCollector\DependencyCollector\DependencyCollector.csproj", "{8D13F3C8-D938-44FD-A0D8-B5D1712C95DB}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TelemetryChannel", "..\BASE\src\ServerTelemetryChannel\TelemetryChannel.csproj", "{0C91D961-B21E-4760-A192-14193F10B831}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.ApplicationInsights", "..\BASE\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj", "{2C7CEEDD-BB15-48DF-B12A-B268E9D74859}"
EndProject
Global
GlobalSection(SharedMSBuildProjectFiles) = preSolution
src\Shared\Shared.projitems*{d56f2979-d6bc-4ef2-bb9b-4077b3290599}*SharedItemsImports = 13
@ -128,6 +144,34 @@ Global
{A41D3299-5E41-4B73-8C8E-DD64824BC9E6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A41D3299-5E41-4B73-8C8E-DD64824BC9E6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A41D3299-5E41-4B73-8C8E-DD64824BC9E6}.Release|Any CPU.Build.0 = Release|Any CPU
{1056392C-387C-4530-BA3F-AA687EA453AE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1056392C-387C-4530-BA3F-AA687EA453AE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1056392C-387C-4530-BA3F-AA687EA453AE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1056392C-387C-4530-BA3F-AA687EA453AE}.Release|Any CPU.Build.0 = Release|Any CPU
{4A9EC531-F8B2-4CD1-BD6B-745F33E52E7B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4A9EC531-F8B2-4CD1-BD6B-745F33E52E7B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4A9EC531-F8B2-4CD1-BD6B-745F33E52E7B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4A9EC531-F8B2-4CD1-BD6B-745F33E52E7B}.Release|Any CPU.Build.0 = Release|Any CPU
{AF9287B2-0D23-4D85-9A3E-200A2A603278}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{AF9287B2-0D23-4D85-9A3E-200A2A603278}.Debug|Any CPU.Build.0 = Debug|Any CPU
{AF9287B2-0D23-4D85-9A3E-200A2A603278}.Release|Any CPU.ActiveCfg = Release|Any CPU
{AF9287B2-0D23-4D85-9A3E-200A2A603278}.Release|Any CPU.Build.0 = Release|Any CPU
{3C157FC2-2E52-45FC-87E8-76E4FCED4260}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3C157FC2-2E52-45FC-87E8-76E4FCED4260}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3C157FC2-2E52-45FC-87E8-76E4FCED4260}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3C157FC2-2E52-45FC-87E8-76E4FCED4260}.Release|Any CPU.Build.0 = Release|Any CPU
{8D13F3C8-D938-44FD-A0D8-B5D1712C95DB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8D13F3C8-D938-44FD-A0D8-B5D1712C95DB}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8D13F3C8-D938-44FD-A0D8-B5D1712C95DB}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8D13F3C8-D938-44FD-A0D8-B5D1712C95DB}.Release|Any CPU.Build.0 = Release|Any CPU
{0C91D961-B21E-4760-A192-14193F10B831}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0C91D961-B21E-4760-A192-14193F10B831}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0C91D961-B21E-4760-A192-14193F10B831}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0C91D961-B21E-4760-A192-14193F10B831}.Release|Any CPU.Build.0 = Release|Any CPU
{2C7CEEDD-BB15-48DF-B12A-B268E9D74859}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2C7CEEDD-BB15-48DF-B12A-B268E9D74859}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2C7CEEDD-BB15-48DF-B12A-B268E9D74859}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2C7CEEDD-BB15-48DF-B12A-B268E9D74859}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
@ -150,6 +194,13 @@ Global
{AECEE8DD-09AE-4DEA-8690-F76A37C0534B} = {2E6DDE9E-8C75-4F9C-8906-08EBDD6E73EF}
{D56F2979-D6BC-4EF2-BB9B-4077B3290599} = {2E6DDE9E-8C75-4F9C-8906-08EBDD6E73EF}
{A41D3299-5E41-4B73-8C8E-DD64824BC9E6} = {8B5230E5-8138-44D6-839F-DF9248F195EE}
{1056392C-387C-4530-BA3F-AA687EA453AE} = {042C2916-4BB7-4CCB-BD61-A8BAAB0129B9}
{4A9EC531-F8B2-4CD1-BD6B-745F33E52E7B} = {042C2916-4BB7-4CCB-BD61-A8BAAB0129B9}
{AF9287B2-0D23-4D85-9A3E-200A2A603278} = {042C2916-4BB7-4CCB-BD61-A8BAAB0129B9}
{3C157FC2-2E52-45FC-87E8-76E4FCED4260} = {042C2916-4BB7-4CCB-BD61-A8BAAB0129B9}
{8D13F3C8-D938-44FD-A0D8-B5D1712C95DB} = {042C2916-4BB7-4CCB-BD61-A8BAAB0129B9}
{0C91D961-B21E-4760-A192-14193F10B831} = {042C2916-4BB7-4CCB-BD61-A8BAAB0129B9}
{2C7CEEDD-BB15-48DF-B12A-B268E9D74859} = {042C2916-4BB7-4CCB-BD61-A8BAAB0129B9}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {047855A4-470F-43B1-8B74-69651DD6B8A6}

Просмотреть файл

@ -3,7 +3,5 @@
<packageSources>
<clear />
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
<add key="applicationinsights" value="https://www.myget.org/F/applicationinsights/api/v3/index.json" />
<add key="Net Core Feed" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/3.0.100-rc2-014277/nuget/v3/index.json" />
</packageSources>
</configuration>

Просмотреть файл

@ -63,11 +63,11 @@
<Import Project="..\Shared\Shared.projitems" Label="Shared" />
<ItemGroup>
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.12.0-beta1" />
<PackageReference Include="Microsoft.ApplicationInsights.DependencyCollector" Version="2.12.0-beta1" />
<PackageReference Include="Microsoft.ApplicationInsights.PerfCounterCollector" Version="2.12.0-beta1" />
<PackageReference Include="Microsoft.ApplicationInsights.WindowsServer" Version="2.12.0-beta1" />
<PackageReference Include="Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel" Version="2.12.0-beta1" />
<ProjectReference Include="..\..\..\BASE\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj" />
<ProjectReference Include="..\..\..\BASE\src\ServerTelemetryChannel\TelemetryChannel.csproj" />
<ProjectReference Include="..\..\..\WEB\Src\DependencyCollector\DependencyCollector\DependencyCollector.csproj" />
<ProjectReference Include="..\..\..\WEB\Src\PerformanceCollector\PerformanceCollector\Perf.csproj" />
<ProjectReference Include="..\..\..\WEB\Src\WindowsServer\WindowsServer\WindowsServer.csproj" />
<PackageReference Include="Microsoft.AspNetCore.Hosting" Version="1.0.2" />
<PackageReference Include="System.Text.Encodings.Web" Version="4.3.1" />
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="4.6.0" />
@ -79,10 +79,10 @@
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="2.1.0" />
<PackageReference Include="Microsoft.Extensions.Logging.ApplicationInsights" Version="2.12.0-beta1" />
<PackageReference Include="Microsoft.ApplicationInsights.EventCounterCollector" Version="2.12.0-beta1" />
<PackageReference Include="System.Text.Encodings.Web" Version="4.3.1" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="2.1.0" />
<ProjectReference Include="..\..\..\LOGGING\src\ILogger\ILogger.csproj" />
<ProjectReference Include="..\..\..\WEB\Src\EventCounterCollector\EventCounterCollector\EventCounterCollector.csproj" />
<PackageReference Include="System.Text.Encodings.Web" Version="4.3.1" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net451' OR '$(TargetFramework)' == 'net46' ">

Просмотреть файл

@ -1,5 +1,5 @@
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="$(SourceRoot)\Product.props"/>
<Import Project="$(SourceRoot)\Product.props" />
<PropertyGroup>
<AssemblyName>Microsoft.ApplicationInsights.WorkerService</AssemblyName>
@ -58,13 +58,13 @@
<Import Project="..\Shared\Shared.projitems" Label="Shared" />
<ItemGroup>
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.12.0-beta1" />
<PackageReference Include="Microsoft.ApplicationInsights.DependencyCollector" Version="2.12.0-beta1" />
<PackageReference Include="Microsoft.ApplicationInsights.PerfCounterCollector" Version="2.12.0-beta1" />
<PackageReference Include="Microsoft.ApplicationInsights.WindowsServer" Version="2.12.0-beta1" />
<PackageReference Include="Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel" Version="2.12.0-beta1" />
<PackageReference Include="Microsoft.Extensions.Logging.ApplicationInsights" Version="2.12.0-beta1" />
<PackageReference Include="Microsoft.ApplicationInsights.EventCounterCollector" Version="2.12.0-beta1" />
<ProjectReference Include="..\..\..\BASE\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj" />
<ProjectReference Include="..\..\..\BASE\src\ServerTelemetryChannel\TelemetryChannel.csproj" />
<ProjectReference Include="..\..\..\LOGGING\src\ILogger\ILogger.csproj" />
<ProjectReference Include="..\..\..\WEB\Src\DependencyCollector\DependencyCollector\DependencyCollector.csproj" />
<ProjectReference Include="..\..\..\WEB\Src\EventCounterCollector\EventCounterCollector\EventCounterCollector.csproj" />
<ProjectReference Include="..\..\..\WEB\Src\PerformanceCollector\PerformanceCollector\Perf.csproj" />
<ProjectReference Include="..\..\..\WEB\Src\WindowsServer\WindowsServer\WindowsServer.csproj" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="2.2.0" />
</ItemGroup>

Просмотреть файл

@ -30,6 +30,7 @@
<ItemGroup Condition=" '$(TargetFramework)' == 'net46' ">
<Reference Include="System" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Net.Http" />
</ItemGroup>
<ItemGroup>

Просмотреть файл

@ -25,6 +25,7 @@
<ItemGroup Condition=" '$(TargetFramework)' == 'net46' ">
<Reference Include="System" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Net.Http" />
</ItemGroup>
</Project>

10
NuGet.config Normal file
Просмотреть файл

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<config>
<add key="repositoryPath" value="..\packages" />
</config>
<packageSources>
<clear />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
</packageSources>
</configuration>

Просмотреть файл

@ -1,11 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<UsingTask TaskName="InjectXmlLanguage" TaskFactory="CodeTaskFactory" AssemblyFile="$(MSBuildToolsPath)\Microsoft.Build.Tasks.Core.dll">
<UsingTask TaskName="InjectXmlLanguage" TaskFactory="RoslynCodeTaskFactory" AssemblyFile="$(MSBuildToolsPath)\Microsoft.Build.Tasks.Core.dll">
<ParameterGroup>
<InputFiles ParameterType="Microsoft.Build.Framework.ITaskItem[]" Required="true" />
</ParameterGroup>
<Task>
<Reference Include="System" />
<!--<Reference Include="System" />-->
<Using Namespace="System" />
<Using Namespace="System.Diagnostics" />
<Using Namespace="System.IO" />
<Code Type="Fragment" Language="cs">

Просмотреть файл

@ -17,9 +17,6 @@
</activePackageSource>
<packageSources>
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
<add key="applicationinsights" value="https://www.myget.org/F/applicationinsights/api/v3/index.json" />
<add key="dotnet-core.myget" value="https://dotnet.myget.org/F/dotnet-core/api/v3/index.json" />
<add key="Net Core Feed" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/3.0.100-rc2-014277/nuget/v3/index.json" />
</packageSources>
<disabledPackageSources />
</configuration>

Просмотреть файл

@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\Product.props" />
<PropertyGroup>
@ -6,6 +6,7 @@
<AssemblyName>Microsoft.AI.DependencyCollector</AssemblyName>
<DocumentationFile>$(OutputPath)\$(AssemblyName).XML</DocumentationFile>
<TargetFrameworks>net45;netstandard1.6;netstandard2.0</TargetFrameworks>
<TargetFrameworks Condition="$(OS) != 'Windows_NT'">netstandard1.6;netstandard2.0</TargetFrameworks>
<Prefer32Bit>false</Prefer32Bit> <!-- net45 -->
<DefineConstants>$(DefineConstants);DEPENDENCY_COLLECTOR;ALLOW_AGGRESSIVE_INLIGNING_ATTRIBUTE;</DefineConstants>
</PropertyGroup>
@ -44,8 +45,9 @@
<ItemGroup>
<!--Common Dependencies-->
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.12.0-beta1" />
<ProjectReference Include="..\..\..\..\BASE\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj" />
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="4.6.0" />
<Reference Include="System.Net.Http" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net45'">

Просмотреть файл

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), 'Test.props'))\Test.props" />
<PropertyGroup>
@ -7,7 +7,7 @@
<ProjectGuid>{257FCE5A-0779-45A5-B541-0CE43D79D009}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
@ -28,9 +28,6 @@
<RootNamespace>Microsoft.ApplicationInsights.DependencyCollector</RootNamespace>
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.ApplicationInsights, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\..\..\..\..\packages\Microsoft.ApplicationInsights.2.12.0-beta1\lib\net45\Microsoft.ApplicationInsights.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework" />
<Reference Include="System.Buffers, Version=4.0.2.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
@ -89,6 +86,10 @@
<Analyzer Include="..\..\..\..\..\packages\StyleCop.Analyzers.1.0.2\analyzers\dotnet\cs\StyleCop.Analyzers.dll" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\..\BASE\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj">
<Project>{e3d160e8-7f8c-416f-946f-6fdfc6787461}</Project>
<Name>Microsoft.ApplicationInsights</Name>
</ProjectReference>
<ProjectReference Include="..\DependencyCollector\DependencyCollector.csproj">
<Project>{2c61ff6e-ac8e-429f-bcee-f38c129028d5}</Project>
<Name>DependencyCollector</Name>
@ -99,4 +100,4 @@
<Import Project="$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets" Condition="Exists('$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets')" />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), 'Common.targets'))\Common.targets" />
</Project>
</Project>

Просмотреть файл

@ -1,14 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Diagnostics.DiagnosticSource" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.4.0" newVersion="4.0.4.0" />
<assemblyIdentity name="System.Diagnostics.DiagnosticSource" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-4.0.4.0" newVersion="4.0.4.0"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.1.1" newVersion="4.0.1.1" />
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-4.0.1.1" newVersion="4.0.1.1"/>
</dependentAssembly>
</assemblyBinding>
</runtime>

Просмотреть файл

@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Microsoft.ApplicationInsights" version="2.12.0-beta1" targetFramework="net451" />
<package id="StyleCop.Analyzers" version="1.0.2" targetFramework="net451" developmentDependency="true" />
<package id="System.Buffers" version="4.4.0" targetFramework="net451" />
<package id="System.Diagnostics.DiagnosticSource" version="4.6.0" targetFramework="net451" />
@ -12,4 +11,4 @@
<package id="xunit.core" version="2.1.0" targetFramework="net451" />
<package id="xunit.extensibility.core" version="2.1.0" targetFramework="net451" />
<package id="xunit.extensibility.execution" version="2.1.0" targetFramework="net451" />
</packages>
</packages>

Просмотреть файл

@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), 'Test.props'))\Test.props" />
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), NetCore.props))\NetCore.props" />
@ -25,8 +25,8 @@
<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="16.2.0" />
<PackageReference Include="MSTest.TestAdapter" Version="1.4.0" />
<PackageReference Include="MSTest.TestFramework" Version="1.4.0" />
<PackageReference Include="MSTest.TestAdapter" Version="2.0.0" />
<PackageReference Include="MSTest.TestFramework" Version="2.0.0" />
<PackageReference Include="StyleCop.Analyzers" Version="1.0.2" />
<PackageReference Include="System.Diagnostics.StackTrace" Version="4.3.0" />
<PackageReference Include="xunit" Version="2.4.1" />

Просмотреть файл

@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\Product.props" />
<PropertyGroup>
@ -38,7 +38,7 @@
<ItemGroup>
<!--Common Dependencies-->
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.12.0-beta1" />
<ProjectReference Include="..\..\..\..\BASE\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj" />
</ItemGroup>
<Import Project="..\..\..\Src\Common\Common.projitems" Label="Shared" />

Просмотреть файл

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), 'Test.props'))\Test.props" />
<PropertyGroup>
@ -24,9 +24,6 @@
<DefineConstants>$(DefineConstants);NET45</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.ApplicationInsights, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\..\..\..\..\packages\Microsoft.ApplicationInsights.2.12.0-beta1\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>
</Reference>
@ -69,6 +66,10 @@
<Analyzer Include="..\..\..\..\..\packages\StyleCop.Analyzers.1.0.2\analyzers\dotnet\cs\StyleCop.Analyzers.dll" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\..\BASE\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj">
<Project>{e3d160e8-7f8c-416f-946f-6fdfc6787461}</Project>
<Name>Microsoft.ApplicationInsights</Name>
</ProjectReference>
<ProjectReference Include="..\HostingStartup\HostingStartup.csproj">
<Project>{80f0481a-66c7-4442-96d3-5fd841132c4b}</Project>
<Name>HostingStartup</Name>
@ -95,4 +96,4 @@
<Import Project="$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets" Condition="Exists('$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets')" />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), 'Common.targets'))\Common.targets" />
</Project>
</Project>

Просмотреть файл

@ -1,7 +1,6 @@
<?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.12.0-beta1" targetFramework="net45" />
<package id="StyleCop.Analyzers" version="1.0.2" targetFramework="net45" developmentDependency="true" />
<package id="System.Buffers" version="4.4.0" targetFramework="net45" />
<package id="System.Diagnostics.DiagnosticSource" version="4.6.0" targetFramework="net45" />

Просмотреть файл

@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\Product.props" />
<PropertyGroup>
@ -40,7 +40,7 @@
<ItemGroup>
<!--Common Dependencies-->
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.12.0-beta1" />
<ProjectReference Include="..\..\..\..\BASE\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj" />
<PackageReference Include="Microsoft.Web.Infrastructure" Version="1.0.0.0" />
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="4.6.0" />
</ItemGroup>

Просмотреть файл

@ -98,6 +98,12 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EventCounterCollector", "Ev
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EventCounterCollector.Tests", "EventCounterCollector\EventCounterCollector.Tests\EventCounterCollector.Tests\EventCounterCollector.Tests.csproj", "{6ABC0D66-F577-44A7-8F61-B23882B7A1FF}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".DependentProjects", ".DependentProjects", "{85C7566E-98C3-479D-AC4F-0D4B161B7D42}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.ApplicationInsights", "..\..\BASE\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj", "{2BB7F06B-F094-417F-8C1B-7FCCA1192E17}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TelemetryChannel", "..\..\BASE\src\ServerTelemetryChannel\TelemetryChannel.csproj", "{41301181-F4BE-4C36-B78D-A29C55CB0469}"
EndProject
Global
GlobalSection(SharedMSBuildProjectFiles) = preSolution
PerformanceCollector\Perf.Shared.NetStandard20Net45\Perf.Shared.NetStandard20Net45.projitems*{054c25dc-e545-4712-95c4-81f30cf65ce8}*SharedItemsImports = 13
@ -269,6 +275,22 @@ Global
{6ABC0D66-F577-44A7-8F61-B23882B7A1FF}.Release|Any CPU.Build.0 = Release|Any CPU
{6ABC0D66-F577-44A7-8F61-B23882B7A1FF}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{6ABC0D66-F577-44A7-8F61-B23882B7A1FF}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{2BB7F06B-F094-417F-8C1B-7FCCA1192E17}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2BB7F06B-F094-417F-8C1B-7FCCA1192E17}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2BB7F06B-F094-417F-8C1B-7FCCA1192E17}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{2BB7F06B-F094-417F-8C1B-7FCCA1192E17}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{2BB7F06B-F094-417F-8C1B-7FCCA1192E17}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2BB7F06B-F094-417F-8C1B-7FCCA1192E17}.Release|Any CPU.Build.0 = Release|Any CPU
{2BB7F06B-F094-417F-8C1B-7FCCA1192E17}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{2BB7F06B-F094-417F-8C1B-7FCCA1192E17}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{41301181-F4BE-4C36-B78D-A29C55CB0469}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{41301181-F4BE-4C36-B78D-A29C55CB0469}.Debug|Any CPU.Build.0 = Debug|Any CPU
{41301181-F4BE-4C36-B78D-A29C55CB0469}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{41301181-F4BE-4C36-B78D-A29C55CB0469}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{41301181-F4BE-4C36-B78D-A29C55CB0469}.Release|Any CPU.ActiveCfg = Release|Any CPU
{41301181-F4BE-4C36-B78D-A29C55CB0469}.Release|Any CPU.Build.0 = Release|Any CPU
{41301181-F4BE-4C36-B78D-A29C55CB0469}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{41301181-F4BE-4C36-B78D-A29C55CB0469}.Release|Mixed Platforms.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
@ -305,6 +327,8 @@ Global
{AC7D8533-C823-4E93-B008-51B3C4744E2E} = {A318CC6C-51C8-4BD6-BC85-2B4F35123BE7}
{054C25DC-E545-4712-95C4-81F30CF65CE8} = {A318CC6C-51C8-4BD6-BC85-2B4F35123BE7}
{A8BA3BD0-19CE-488D-B2BD-0B9B677F4E03} = {A318CC6C-51C8-4BD6-BC85-2B4F35123BE7}
{2BB7F06B-F094-417F-8C1B-7FCCA1192E17} = {85C7566E-98C3-479D-AC4F-0D4B161B7D42}
{41301181-F4BE-4C36-B78D-A29C55CB0469} = {85C7566E-98C3-479D-AC4F-0D4B161B7D42}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {F99E0A07-C363-49BF-BFA7-C748391CE38E}

Просмотреть файл

@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), 'Test.props'))\Test.props" />
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), NetCore.props))\NetCore.props" />
@ -23,9 +23,9 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.1.0" />
<PackageReference Include="MSTest.TestAdapter" Version="1.4.0" />
<PackageReference Include="MSTest.TestFramework" Version="1.4.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0" />
<PackageReference Include="MSTest.TestAdapter" Version="2.0.0" />
<PackageReference Include="MSTest.TestFramework" Version="2.0.0" />
<PackageReference Include="NETStandard.HttpListener" Version="1.0.2" />
<PackageReference Include="System.Diagnostics.StackTrace" Version="4.3.0" />
</ItemGroup>

Просмотреть файл

@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), 'Test.props'))\Test.props" />
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), NetCore.props))\NetCore.props" />
@ -22,9 +22,9 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.1.0" />
<PackageReference Include="MSTest.TestAdapter" Version="1.4.0" />
<PackageReference Include="MSTest.TestFramework" Version="1.4.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0" />
<PackageReference Include="MSTest.TestAdapter" Version="2.0.0" />
<PackageReference Include="MSTest.TestFramework" Version="2.0.0" />
<PackageReference Include="System.Diagnostics.StackTrace" Version="4.3.0" />
</ItemGroup>

Просмотреть файл

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), 'Test.props'))\Test.props" />
<PropertyGroup>
@ -37,9 +37,6 @@
<RunCodeAnalysis>true</RunCodeAnalysis>
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.ApplicationInsights, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\..\..\..\..\packages\Microsoft.ApplicationInsights.2.12.0-beta1\lib\net45\Microsoft.ApplicationInsights.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework" />
<Reference Include="System.Buffers, Version=4.0.2.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
@ -83,6 +80,10 @@
<EmbeddedResource Include="QuickPulse\PerfLib\PerfData.data" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\..\BASE\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj">
<Project>{e3d160e8-7f8c-416f-946f-6fdfc6787461}</Project>
<Name>Microsoft.ApplicationInsights</Name>
</ProjectReference>
<ProjectReference Include="..\PerformanceCollector\Perf.csproj">
<Project>{00bf736c-b562-4251-9836-ef80282956af}</Project>
<Name>Perf</Name>
@ -93,4 +94,4 @@
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), 'Common.targets'))\Common.targets" />
<Import Project="..\..\TestFramework\Shared\TestFramework.Shared.projitems" Label="Shared" />
</Project>
</Project>

Просмотреть файл

@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Microsoft.ApplicationInsights" version="2.12.0-beta1" targetFramework="net45" />
<package id="Microsoft.Diagnostics.Tracing.EventSource.Redist" version="1.1.28" targetFramework="net45" />
<package id="System.Buffers" version="4.4.0" targetFramework="net45" />
<package id="System.Diagnostics.DiagnosticSource" version="4.6.0" targetFramework="net45" />

Просмотреть файл

@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\Product.props" />
<PropertyGroup>
@ -6,6 +6,7 @@
<AssemblyName>Microsoft.AI.PerfCounterCollector</AssemblyName>
<DocumentationFile>$(OutputPath)\$(AssemblyName).XML</DocumentationFile>
<TargetFrameworks>net45;netstandard1.6;netstandard2.0</TargetFrameworks>
<TargetFrameworks Condition="$(OS) != 'Windows_NT'">netstandard1.6;netstandard2.0</TargetFrameworks>
</PropertyGroup>
<PropertyGroup>
@ -38,7 +39,7 @@
<ItemGroup>
<!--Common Dependencies-->
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.12.0-beta1" />
<ProjectReference Include="..\..\..\..\BASE\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net45'">

Просмотреть файл

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), 'Test.props'))\Test.props" />
<PropertyGroup>
@ -7,7 +7,7 @@
<ProjectGuid>{F71138BB-B3F8-4767-B394-857B0776038E}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
@ -28,9 +28,6 @@
<Reference Include="Castle.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=407dd0808d44fbdc, processorArchitecture=MSIL">
<HintPath>..\..\..\..\..\packages\Castle.Core.4.4.0\lib\net45\Castle.Core.dll</HintPath>
</Reference>
<Reference Include="Microsoft.ApplicationInsights, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\..\..\..\..\packages\Microsoft.ApplicationInsights.2.12.0-beta1\lib\net45\Microsoft.ApplicationInsights.dll</HintPath>
</Reference>
<Reference Include="Microsoft.AspNet.TelemetryCorrelation, Version=1.0.7.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\..\..\..\..\packages\Microsoft.AspNet.TelemetryCorrelation.1.0.7\lib\net45\Microsoft.AspNet.TelemetryCorrelation.dll</HintPath>
</Reference>
@ -143,6 +140,10 @@
<Analyzer Include="..\..\..\..\..\packages\StyleCop.Analyzers.1.0.2\analyzers\dotnet\cs\StyleCop.Analyzers.dll" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\..\BASE\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj">
<Project>{e3d160e8-7f8c-416f-946f-6fdfc6787461}</Project>
<Name>Microsoft.ApplicationInsights</Name>
</ProjectReference>
<ProjectReference Include="..\Web\Web.csproj">
<Project>{5a507420-188e-4f28-aecc-9f0877b7391b}</Project>
<Name>Web</Name>
@ -153,4 +154,4 @@
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), 'Common.targets'))\Common.targets" />
<Import Project="..\..\TestFramework\Shared\TestFramework.Shared.projitems" Label="Shared" />
</Project>
</Project>

Просмотреть файл

@ -1,15 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Diagnostics.DiagnosticSource" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.4.0" newVersion="4.0.4.0" />
<assemblyIdentity name="System.Diagnostics.DiagnosticSource" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-4.0.4.0" newVersion="4.0.4.0"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.1.1" newVersion="4.0.1.1" />
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-4.0.1.1" newVersion="4.0.1.1"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
</configuration>

Просмотреть файл

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Castle.Core" version="4.4.0" targetFramework="net451" />
<package id="Microsoft.ApplicationInsights" version="2.12.0-beta1" 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.7" targetFramework="net451" />

Просмотреть файл

@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\Product.props" />
<PropertyGroup>
@ -40,7 +40,7 @@
<ItemGroup>
<!--Common Dependencies-->
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.12.0-beta1" />
<ProjectReference Include="..\..\..\..\BASE\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj" />
<PackageReference Include="Microsoft.AspNet.TelemetryCorrelation" Version="1.0.7" />
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="4.6.0" />
</ItemGroup>

Просмотреть файл

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), 'Test.props'))\Test.props" />
<PropertyGroup>
@ -25,9 +25,6 @@
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' " />
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' " />
<ItemGroup>
<Reference Include="Microsoft.ApplicationInsights, Version=2.12.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\..\..\..\..\packages\Microsoft.ApplicationInsights.2.12.0-beta1\lib\net45\Microsoft.ApplicationInsights.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Buffers, Version=4.0.2.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<HintPath>..\..\..\..\..\packages\System.Buffers.4.4.0\lib\netstandard1.1\System.Buffers.dll</HintPath>
@ -76,6 +73,10 @@
<Folder Include="Properties\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\..\BASE\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj">
<Project>{e3d160e8-7f8c-416f-946f-6fdfc6787461}</Project>
<Name>Microsoft.ApplicationInsights</Name>
</ProjectReference>
<ProjectReference Include="..\WindowsServer\WindowsServer.csproj">
<Project>{94127fd9-e516-4891-98d4-ef7523117f32}</Project>
<Name>WindowsServer</Name>
@ -116,4 +117,4 @@
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), 'Common.targets'))\Common.targets" />
<Import Project="..\..\TestFramework\Shared\TestFramework.Shared.projitems" Label="Shared" />
<Import Project="..\WindowsServer.Shared.Tests\WindowsServer.Shared.Tests.projitems" Label="Shared" />
</Project>
</Project>

Просмотреть файл

@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Microsoft.ApplicationInsights" version="2.12.0-beta1" targetFramework="net45" />
<package id="StyleCop.Analyzers" version="1.0.2" targetFramework="net45" developmentDependency="true" />
<package id="System.Buffers" version="4.4.0" targetFramework="net45" />
<package id="System.Diagnostics.DiagnosticSource" version="4.6.0" targetFramework="net45" />

Просмотреть файл

@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), 'Test.props'))\Test.props" />
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), NetCore.props))\NetCore.props" />
@ -24,7 +24,6 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.12.0-beta1" />
<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="16.1.0" />

Просмотреть файл

@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\Product.props" />
<PropertyGroup>
@ -6,6 +6,7 @@
<AssemblyName>Microsoft.AI.WindowsServer</AssemblyName>
<DocumentationFile>$(OutputPath)\$(AssemblyName).XML</DocumentationFile>
<TargetFrameworks>net45;netstandard1.6;netstandard2.0</TargetFrameworks>
<TargetFrameworks Condition="$(OS) != 'Windows_NT'">netstandard1.6;netstandard2.0</TargetFrameworks>
</PropertyGroup>
<PropertyGroup>
@ -42,9 +43,10 @@
<ItemGroup>
<!--Common Dependencies-->
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.12.0-beta1" />
<PackageReference Include="Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel" Version="2.12.0-beta1" />
<ProjectReference Include="..\..\..\..\BASE\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj" />
<ProjectReference Include="..\..\..\..\BASE\src\ServerTelemetryChannel\TelemetryChannel.csproj" />
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="4.6.0" />
<Reference Include="System.Net.Http" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard1.6' OR '$(TargetFramework)' == 'netstandard2.0'">

Просмотреть файл

@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.26730.12
# Visual Studio Version 16
VisualStudioVersion = 16.0.29503.13
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DependencyCollectionTests", "E2ETests\DependencyCollectionTests.csproj", "{DB992B10-D3D8-4DA1-815A-A2F5B7F3C18C}"
EndProject
@ -9,7 +9,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "E2ETestApp", "TestApps\Net4
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "E2ETestWebApi", "TestApps\Net452\E2ETestWebApi\E2ETestWebApi.csproj", "{C5D0B7FC-B9FB-4A22-8853-F0E2B0128F33}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{37942D23-BEF2-4EA6-B294-3277999DC128}"
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".Solution Items", ".Solution Items", "{37942D23-BEF2-4EA6-B294-3277999DC128}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IngestionService", "IngestionService\IngestionService.csproj", "{1CDFCA01-F1A0-4210-8D18-C0A0A0144E7A}"
EndProject
@ -21,10 +21,24 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "TestApps", "TestApps", "{E5
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "TestUtils", "TestUtils", "{75D4A1E1-5500-4BA2-8405-CF25297F7B89}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "E2ETestAppCore20", "TestApps\NetCore20\E2ETestAppCore20\E2ETestAppCore20.csproj", "{F838D8E1-FFCF-4C6B-901D-4D8DC98EC05C}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "E2ETestAppCore20", "TestApps\NetCore20\E2ETestAppCore20\E2ETestAppCore20.csproj", "{F838D8E1-FFCF-4C6B-901D-4D8DC98EC05C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestConstants", "TestConstants\TestConstants.csproj", "{C46726F5-105A-46D8-A92B-0A62A64C2430}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".DependentProjects", ".DependentProjects", "{5D16B4FA-6E25-4FC5-A12E-88320BB1FB63}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.ApplicationInsights", "..\..\..\BASE\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj", "{B03D7034-2A49-4FE1-B9B1-4DF16B136B2C}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TelemetryChannel", "..\..\..\BASE\src\ServerTelemetryChannel\TelemetryChannel.csproj", "{37030556-260D-49B9-B546-72A44D0B2CB6}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DependencyCollector", "..\..\Src\DependencyCollector\DependencyCollector\DependencyCollector.csproj", "{F68E18CA-00B6-4129-85A6-AFC4FFE1CA9B}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Perf", "..\..\Src\PerformanceCollector\PerformanceCollector\Perf.csproj", "{69638973-00ED-4468-85CE-548FE6BD859B}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Web", "..\..\Src\Web\Web\Web.csproj", "{4605EEFE-6A7F-4568-A55C-5541D390B013}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WindowsServer", "..\..\Src\WindowsServer\WindowsServer\WindowsServer.csproj", "{3D729610-DBC2-4CDE-9969-CBDB93DB6102}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@ -97,6 +111,54 @@ Global
{C46726F5-105A-46D8-A92B-0A62A64C2430}.Release|Any CPU.Build.0 = Release|Any CPU
{C46726F5-105A-46D8-A92B-0A62A64C2430}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{C46726F5-105A-46D8-A92B-0A62A64C2430}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{B03D7034-2A49-4FE1-B9B1-4DF16B136B2C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B03D7034-2A49-4FE1-B9B1-4DF16B136B2C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B03D7034-2A49-4FE1-B9B1-4DF16B136B2C}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{B03D7034-2A49-4FE1-B9B1-4DF16B136B2C}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{B03D7034-2A49-4FE1-B9B1-4DF16B136B2C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B03D7034-2A49-4FE1-B9B1-4DF16B136B2C}.Release|Any CPU.Build.0 = Release|Any CPU
{B03D7034-2A49-4FE1-B9B1-4DF16B136B2C}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{B03D7034-2A49-4FE1-B9B1-4DF16B136B2C}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{37030556-260D-49B9-B546-72A44D0B2CB6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{37030556-260D-49B9-B546-72A44D0B2CB6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{37030556-260D-49B9-B546-72A44D0B2CB6}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{37030556-260D-49B9-B546-72A44D0B2CB6}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{37030556-260D-49B9-B546-72A44D0B2CB6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{37030556-260D-49B9-B546-72A44D0B2CB6}.Release|Any CPU.Build.0 = Release|Any CPU
{37030556-260D-49B9-B546-72A44D0B2CB6}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{37030556-260D-49B9-B546-72A44D0B2CB6}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{F68E18CA-00B6-4129-85A6-AFC4FFE1CA9B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F68E18CA-00B6-4129-85A6-AFC4FFE1CA9B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F68E18CA-00B6-4129-85A6-AFC4FFE1CA9B}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{F68E18CA-00B6-4129-85A6-AFC4FFE1CA9B}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{F68E18CA-00B6-4129-85A6-AFC4FFE1CA9B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F68E18CA-00B6-4129-85A6-AFC4FFE1CA9B}.Release|Any CPU.Build.0 = Release|Any CPU
{F68E18CA-00B6-4129-85A6-AFC4FFE1CA9B}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{F68E18CA-00B6-4129-85A6-AFC4FFE1CA9B}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{69638973-00ED-4468-85CE-548FE6BD859B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{69638973-00ED-4468-85CE-548FE6BD859B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{69638973-00ED-4468-85CE-548FE6BD859B}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{69638973-00ED-4468-85CE-548FE6BD859B}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{69638973-00ED-4468-85CE-548FE6BD859B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{69638973-00ED-4468-85CE-548FE6BD859B}.Release|Any CPU.Build.0 = Release|Any CPU
{69638973-00ED-4468-85CE-548FE6BD859B}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{69638973-00ED-4468-85CE-548FE6BD859B}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{4605EEFE-6A7F-4568-A55C-5541D390B013}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4605EEFE-6A7F-4568-A55C-5541D390B013}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4605EEFE-6A7F-4568-A55C-5541D390B013}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{4605EEFE-6A7F-4568-A55C-5541D390B013}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{4605EEFE-6A7F-4568-A55C-5541D390B013}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4605EEFE-6A7F-4568-A55C-5541D390B013}.Release|Any CPU.Build.0 = Release|Any CPU
{4605EEFE-6A7F-4568-A55C-5541D390B013}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{4605EEFE-6A7F-4568-A55C-5541D390B013}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{3D729610-DBC2-4CDE-9969-CBDB93DB6102}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3D729610-DBC2-4CDE-9969-CBDB93DB6102}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3D729610-DBC2-4CDE-9969-CBDB93DB6102}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{3D729610-DBC2-4CDE-9969-CBDB93DB6102}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{3D729610-DBC2-4CDE-9969-CBDB93DB6102}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3D729610-DBC2-4CDE-9969-CBDB93DB6102}.Release|Any CPU.Build.0 = Release|Any CPU
{3D729610-DBC2-4CDE-9969-CBDB93DB6102}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{3D729610-DBC2-4CDE-9969-CBDB93DB6102}.Release|Mixed Platforms.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
@ -109,6 +171,12 @@ Global
{4B0BC3B7-C7FC-4333-9E28-5790D9153F07} = {75D4A1E1-5500-4BA2-8405-CF25297F7B89}
{F838D8E1-FFCF-4C6B-901D-4D8DC98EC05C} = {E51D85A0-9962-416B-8314-9C58BC170D89}
{C46726F5-105A-46D8-A92B-0A62A64C2430} = {75D4A1E1-5500-4BA2-8405-CF25297F7B89}
{B03D7034-2A49-4FE1-B9B1-4DF16B136B2C} = {5D16B4FA-6E25-4FC5-A12E-88320BB1FB63}
{37030556-260D-49B9-B546-72A44D0B2CB6} = {5D16B4FA-6E25-4FC5-A12E-88320BB1FB63}
{F68E18CA-00B6-4129-85A6-AFC4FFE1CA9B} = {5D16B4FA-6E25-4FC5-A12E-88320BB1FB63}
{69638973-00ED-4468-85CE-548FE6BD859B} = {5D16B4FA-6E25-4FC5-A12E-88320BB1FB63}
{4605EEFE-6A7F-4568-A55C-5541D390B013} = {5D16B4FA-6E25-4FC5-A12E-88320BB1FB63}
{3D729610-DBC2-4CDE-9969-CBDB93DB6102} = {5D16B4FA-6E25-4FC5-A12E-88320BB1FB63}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {D0646BA3-97C4-49E1-927B-40B983BC3434}

Просмотреть файл

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\..\..\..\packages\MSTest.TestAdapter.1.1.18\build\net45\MSTest.TestAdapter.props" Condition="Exists('..\..\..\..\..\packages\MSTest.TestAdapter.1.1.18\build\net45\MSTest.TestAdapter.props')" />
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), 'Test.Common.props'))\Test.Common.props" />
@ -52,9 +52,6 @@
</ItemGroup>
-->
<ItemGroup>
<Reference Include="Microsoft.ApplicationInsights, Version=2.12.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\..\..\..\..\packages\Microsoft.ApplicationInsights.2.12.0-beta1\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">
<HintPath>..\..\..\..\..\packages\MSTest.TestFramework.1.1.18\lib\net45\Microsoft.VisualStudio.TestPlatform.TestFramework.dll</HintPath>
@ -146,6 +143,10 @@
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\..\BASE\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj">
<Project>{b03d7034-2a49-4fe1-b9b1-4df16b136b2c}</Project>
<Name>Microsoft.ApplicationInsights</Name>
</ProjectReference>
<ProjectReference Include="..\..\ApplicationInsightsTypes\ApplicationInsightsTypes.csproj">
<Project>{4b0bc3b7-c7fc-4333-9e28-5790d9153f07}</Project>
<Name>ApplicationInsightsTypes</Name>
@ -165,4 +166,4 @@
<Error Condition="!Exists('..\..\..\..\..\packages\MSTest.TestAdapter.1.1.18\build\net45\MSTest.TestAdapter.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\..\..\packages\MSTest.TestAdapter.1.1.18\build\net45\MSTest.TestAdapter.targets'))" />
</Target>
<Import Project="..\..\..\..\..\packages\MSTest.TestAdapter.1.1.18\build\net45\MSTest.TestAdapter.targets" Condition="Exists('..\..\..\..\..\packages\MSTest.TestAdapter.1.1.18\build\net45\MSTest.TestAdapter.targets')" />
</Project>
</Project>

Просмотреть файл

@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Microsoft.ApplicationInsights" version="2.12.0-beta1" targetFramework="net47" />
<package id="MSTest.TestAdapter" version="1.1.18" targetFramework="net47" />
<package id="MSTest.TestFramework" version="1.1.18" targetFramework="net47" />
<package id="Newtonsoft.Json" version="10.0.3" targetFramework="net47" />

Просмотреть файл

@ -17,6 +17,9 @@
<compilation debug="true" targetFramework="4.6"/>
<httpRuntime targetFramework="4.5"/>
<customErrors mode="Off"/>
<hostingEnvironment shadowCopyBinAssemblies="false" />
</system.web>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">

Просмотреть файл

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" DefaultTargets="Build;Package" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\..\..\..\..\..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.3\build\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props" Condition="Exists('..\..\..\..\..\..\..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.3\build\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props')" />
<Import Project="..\..\..\..\..\..\..\packages\Microsoft.Net.Compilers.1.3.2\build\Microsoft.Net.Compilers.props" Condition="Exists('..\..\..\..\..\..\..\packages\Microsoft.Net.Compilers.1.3.2\build\Microsoft.Net.Compilers.props')" />
@ -52,12 +52,6 @@
<Reference Include="Microsoft.AI.Agent.Intercept, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\..\..\..\..\..\..\packages\Microsoft.ApplicationInsights.Agent.Intercept.2.4.0\lib\net45\Microsoft.AI.Agent.Intercept.dll</HintPath>
</Reference>
<Reference Include="Microsoft.AI.ServerTelemetryChannel, Version=2.12.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\..\..\..\..\..\..\packages\Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.12.0-beta1\lib\net45\Microsoft.AI.ServerTelemetryChannel.dll</HintPath>
</Reference>
<Reference Include="Microsoft.ApplicationInsights, Version=2.12.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\..\..\..\..\..\..\packages\Microsoft.ApplicationInsights.2.12.0-beta1\lib\net45\Microsoft.ApplicationInsights.dll</HintPath>
</Reference>
<Reference Include="Microsoft.AspNet.TelemetryCorrelation, Version=1.0.7.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\..\..\..\..\..\..\packages\Microsoft.AspNet.TelemetryCorrelation.1.0.7\lib\net45\Microsoft.AspNet.TelemetryCorrelation.dll</HintPath>
</Reference>
@ -293,6 +287,30 @@
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\..\..\..\BASE\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj">
<Project>{b03d7034-2a49-4fe1-b9b1-4df16b136b2c}</Project>
<Name>Microsoft.ApplicationInsights</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\..\BASE\src\ServerTelemetryChannel\TelemetryChannel.csproj">
<Project>{37030556-260d-49b9-b546-72a44d0b2cb6}</Project>
<Name>TelemetryChannel</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\Src\DependencyCollector\DependencyCollector\DependencyCollector.csproj">
<Project>{f68e18ca-00b6-4129-85a6-afc4ffe1ca9b}</Project>
<Name>DependencyCollector</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\Src\PerformanceCollector\PerformanceCollector\Perf.csproj">
<Project>{69638973-00ed-4468-85ce-548fe6bd859b}</Project>
<Name>Perf</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\Src\Web\Web\Web.csproj">
<Project>{4605eefe-6a7f-4568-a55c-5541d390b013}</Project>
<Name>Web</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\Src\WindowsServer\WindowsServer\WindowsServer.csproj">
<Project>{3d729610-dbc2-4cde-9969-cbdb93db6102}</Project>
<Name>WindowsServer</Name>
</ProjectReference>
<ProjectReference Include="..\..\helpersfortestapp\FW40Shared\HttpSQLHelpers.csproj">
<Project>{0b686082-d66c-438d-8b44-032654b69c22}</Project>
<Name>HttpSQLHelpers</Name>
@ -350,4 +368,4 @@
<Target Name="AfterBuild">
</Target>
-->
</Project>
</Project>

Просмотреть файл

@ -27,6 +27,9 @@
<add name="TelemetryCorrelationHttpModule" type="Microsoft.AspNet.TelemetryCorrelation.TelemetryCorrelationHttpModule, Microsoft.AspNet.TelemetryCorrelation" />
</httpModules>
<customErrors mode="Off" />
<hostingEnvironment shadowCopyBinAssemblies="false" />
</system.web>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">

Просмотреть файл

@ -5,8 +5,6 @@
<package id="AspNet.ScriptManager.jQuery" version="1.10.2" targetFramework="net452" />
<package id="bootstrap" version="3.0.0" targetFramework="net452" />
<package id="jQuery" version="1.10.2" targetFramework="net452" />
<package id="Microsoft.ApplicationInsights" version="2.12.0-beta1" targetFramework="net452" />
<package id="Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel" version="2.12.0-beta1" targetFramework="net452" />
<package id="Microsoft.AspNet.FriendlyUrls" version="1.0.2" targetFramework="net452" />
<package id="Microsoft.AspNet.FriendlyUrls.Core" version="1.0.2" targetFramework="net452" />
<package id="Microsoft.AspNet.ScriptManager.MSAjax" version="5.0.0" targetFramework="net452" />

Просмотреть файл

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" DefaultTargets="Build;Package" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\..\..\..\..\..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.3\build\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props" Condition="Exists('..\..\..\..\..\..\..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.3\build\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props')" />
<Import Project="..\..\..\..\..\..\..\packages\Microsoft.Net.Compilers.1.3.2\build\Microsoft.Net.Compilers.props" Condition="Exists('..\..\..\..\..\..\..\packages\Microsoft.Net.Compilers.1.3.2\build\Microsoft.Net.Compilers.props')" />
@ -48,12 +48,6 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.AI.ServerTelemetryChannel, Version=2.12.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\..\..\..\..\..\..\packages\Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.12.0-beta1\lib\net45\Microsoft.AI.ServerTelemetryChannel.dll</HintPath>
</Reference>
<Reference Include="Microsoft.ApplicationInsights, Version=2.12.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\..\..\..\..\..\..\packages\Microsoft.ApplicationInsights.2.12.0-beta1\lib\net45\Microsoft.ApplicationInsights.dll</HintPath>
</Reference>
<Reference Include="Microsoft.AspNet.TelemetryCorrelation, Version=1.0.7.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\..\..\..\..\..\..\packages\Microsoft.AspNet.TelemetryCorrelation.1.0.7\lib\net45\Microsoft.AspNet.TelemetryCorrelation.dll</HintPath>
</Reference>
@ -270,6 +264,32 @@
<ItemGroup>
<Content Include="Scripts\jquery-1.10.2.min.map" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\..\..\..\BASE\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj">
<Project>{b03d7034-2a49-4fe1-b9b1-4df16b136b2c}</Project>
<Name>Microsoft.ApplicationInsights</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\..\BASE\src\ServerTelemetryChannel\TelemetryChannel.csproj">
<Project>{37030556-260d-49b9-b546-72a44d0b2cb6}</Project>
<Name>TelemetryChannel</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\Src\DependencyCollector\DependencyCollector\DependencyCollector.csproj">
<Project>{f68e18ca-00b6-4129-85a6-afc4ffe1ca9b}</Project>
<Name>DependencyCollector</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\Src\PerformanceCollector\PerformanceCollector\Perf.csproj">
<Project>{69638973-00ed-4468-85ce-548fe6bd859b}</Project>
<Name>Perf</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\Src\Web\Web\Web.csproj">
<Project>{4605eefe-6a7f-4568-a55c-5541d390b013}</Project>
<Name>Web</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\Src\WindowsServer\WindowsServer\WindowsServer.csproj">
<Project>{3d729610-dbc2-4cde-9969-cbdb93db6102}</Project>
<Name>WindowsServer</Name>
</ProjectReference>
</ItemGroup>
<PropertyGroup>
<!--<DeployOnBuild>true</DeployOnBuild>-->
<DeployTarget>PipelinePreDeployCopyAllFilesToOneFolder</DeployTarget>
@ -321,4 +341,4 @@
</Target>
<Target Name="AfterBuild">
</Target> -->
</Project>
</Project>

Просмотреть файл

@ -18,6 +18,9 @@
<add name="ApplicationInsightsWebTracking" type="Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule, Microsoft.AI.Web" />
<add name="TelemetryCorrelationHttpModule" type="Microsoft.AspNet.TelemetryCorrelation.TelemetryCorrelationHttpModule, Microsoft.AspNet.TelemetryCorrelation" />
</httpModules>
<hostingEnvironment shadowCopyBinAssemblies="false" />
</system.web>
<system.webServer>
<handlers>

Просмотреть файл

@ -3,8 +3,6 @@
<package id="Antlr" version="3.4.1.9004" targetFramework="net452" />
<package id="bootstrap" version="3.0.0" targetFramework="net452" />
<package id="jQuery" version="1.10.2" targetFramework="net452" />
<package id="Microsoft.ApplicationInsights" version="2.12.0-beta1" targetFramework="net452" />
<package id="Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel" version="2.12.0-beta1" targetFramework="net452" />
<package id="Microsoft.AspNet.Mvc" version="5.2.3" targetFramework="net452" />
<package id="Microsoft.AspNet.Razor" version="3.2.3" targetFramework="net452" />
<package id="Microsoft.AspNet.TelemetryCorrelation" version="1.0.7" targetFramework="net452" />

Просмотреть файл

@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.0</TargetFramework>
@ -18,7 +18,6 @@
<ItemGroup>
<!--<PackageReference Include="Microsoft.AspNetCore.All" Version="2.0.0-preview2-final" />-->
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.12.0-beta1" />
<PackageReference Include="System.Threading.Tasks.Parallel" Version="4.3.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Routing" Version="2.0.0" />
@ -38,16 +37,13 @@
<DotNetCliToolReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Tools" Version="2.0.0" />
</ItemGroup>
<ItemGroup>
<Reference Include="Microsoft.AI.DependencyCollector">
<HintPath>$(BinRoot)\$(Configuration)\Src\DependencyCollector\DependencyCollector\netstandard1.6\Microsoft.AI.DependencyCollector.dll</HintPath>
</Reference>
<Compile Include="..\..\helpersfortestapp\FW40Shared\SqlCommandHelper.cs" Link="SqlCommandHelper.cs" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\helpersfortestapp\FW40Shared\SqlCommandHelper.cs" Link="SqlCommandHelper.cs" />
<ProjectReference Include="..\..\..\..\..\..\BASE\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj" />
<ProjectReference Include="..\..\..\..\..\Src\DependencyCollector\DependencyCollector\DependencyCollector.csproj" />
</ItemGroup>
<ItemGroup>

Просмотреть файл

@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.26730.16
# Visual Studio Version 16
VisualStudioVersion = 16.0.29503.13
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FunctionalTests", "FunctionalTests\FunctionalTests.csproj", "{D233F8EF-C4A8-49B1-8D60-58B32756C850}"
EndProject
@ -11,6 +11,20 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestApp45", "FunctionalTest
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ApplicationInsightsTypes", "..\ApplicationInsightsTypes\ApplicationInsightsTypes.csproj", "{4B0BC3B7-C7FC-4333-9E28-5790D9153F07}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".DependentProjects", ".DependentProjects", "{89374A4A-2B3C-4FEF-9847-BE0FF2A02A93}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.ApplicationInsights", "..\..\..\BASE\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj", "{6D3A5A2F-E594-488B-BB4E-93FA0EFBA1E6}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TelemetryChannel", "..\..\..\BASE\src\ServerTelemetryChannel\TelemetryChannel.csproj", "{BCBB6BD4-90CD-452E-81AA-C54B7F941053}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Perf", "..\..\Src\PerformanceCollector\PerformanceCollector\Perf.csproj", "{685E146A-1541-4CFE-9FAB-4F627979965E}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Web", "..\..\Src\Web\Web\Web.csproj", "{E6045048-621C-476F-AC23-9A82AFD56FE3}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WindowsServer", "..\..\Src\WindowsServer\WindowsServer\WindowsServer.csproj", "{455A52DA-0242-48CA-AFB1-9566F1E0513A}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DependencyCollector", "..\..\Src\DependencyCollector\DependencyCollector\DependencyCollector.csproj", "{E9F6BF3E-3BD3-43F6-B4F1-4C84A0CEB340}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@ -43,12 +57,66 @@ Global
{4B0BC3B7-C7FC-4333-9E28-5790D9153F07}.Release|Any CPU.Build.0 = Release|Any CPU
{4B0BC3B7-C7FC-4333-9E28-5790D9153F07}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{4B0BC3B7-C7FC-4333-9E28-5790D9153F07}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{6D3A5A2F-E594-488B-BB4E-93FA0EFBA1E6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6D3A5A2F-E594-488B-BB4E-93FA0EFBA1E6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6D3A5A2F-E594-488B-BB4E-93FA0EFBA1E6}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{6D3A5A2F-E594-488B-BB4E-93FA0EFBA1E6}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{6D3A5A2F-E594-488B-BB4E-93FA0EFBA1E6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6D3A5A2F-E594-488B-BB4E-93FA0EFBA1E6}.Release|Any CPU.Build.0 = Release|Any CPU
{6D3A5A2F-E594-488B-BB4E-93FA0EFBA1E6}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{6D3A5A2F-E594-488B-BB4E-93FA0EFBA1E6}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{BCBB6BD4-90CD-452E-81AA-C54B7F941053}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BCBB6BD4-90CD-452E-81AA-C54B7F941053}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BCBB6BD4-90CD-452E-81AA-C54B7F941053}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{BCBB6BD4-90CD-452E-81AA-C54B7F941053}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{BCBB6BD4-90CD-452E-81AA-C54B7F941053}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BCBB6BD4-90CD-452E-81AA-C54B7F941053}.Release|Any CPU.Build.0 = Release|Any CPU
{BCBB6BD4-90CD-452E-81AA-C54B7F941053}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{BCBB6BD4-90CD-452E-81AA-C54B7F941053}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{685E146A-1541-4CFE-9FAB-4F627979965E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{685E146A-1541-4CFE-9FAB-4F627979965E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{685E146A-1541-4CFE-9FAB-4F627979965E}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{685E146A-1541-4CFE-9FAB-4F627979965E}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{685E146A-1541-4CFE-9FAB-4F627979965E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{685E146A-1541-4CFE-9FAB-4F627979965E}.Release|Any CPU.Build.0 = Release|Any CPU
{685E146A-1541-4CFE-9FAB-4F627979965E}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{685E146A-1541-4CFE-9FAB-4F627979965E}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{E6045048-621C-476F-AC23-9A82AFD56FE3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E6045048-621C-476F-AC23-9A82AFD56FE3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E6045048-621C-476F-AC23-9A82AFD56FE3}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{E6045048-621C-476F-AC23-9A82AFD56FE3}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{E6045048-621C-476F-AC23-9A82AFD56FE3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E6045048-621C-476F-AC23-9A82AFD56FE3}.Release|Any CPU.Build.0 = Release|Any CPU
{E6045048-621C-476F-AC23-9A82AFD56FE3}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{E6045048-621C-476F-AC23-9A82AFD56FE3}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{455A52DA-0242-48CA-AFB1-9566F1E0513A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{455A52DA-0242-48CA-AFB1-9566F1E0513A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{455A52DA-0242-48CA-AFB1-9566F1E0513A}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{455A52DA-0242-48CA-AFB1-9566F1E0513A}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{455A52DA-0242-48CA-AFB1-9566F1E0513A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{455A52DA-0242-48CA-AFB1-9566F1E0513A}.Release|Any CPU.Build.0 = Release|Any CPU
{455A52DA-0242-48CA-AFB1-9566F1E0513A}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{455A52DA-0242-48CA-AFB1-9566F1E0513A}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{E9F6BF3E-3BD3-43F6-B4F1-4C84A0CEB340}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E9F6BF3E-3BD3-43F6-B4F1-4C84A0CEB340}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E9F6BF3E-3BD3-43F6-B4F1-4C84A0CEB340}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{E9F6BF3E-3BD3-43F6-B4F1-4C84A0CEB340}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{E9F6BF3E-3BD3-43F6-B4F1-4C84A0CEB340}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E9F6BF3E-3BD3-43F6-B4F1-4C84A0CEB340}.Release|Any CPU.Build.0 = Release|Any CPU
{E9F6BF3E-3BD3-43F6-B4F1-4C84A0CEB340}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{E9F6BF3E-3BD3-43F6-B4F1-4C84A0CEB340}.Release|Mixed Platforms.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{BD4C55CF-0513-4F93-936B-6EE57497ED84} = {1C499664-AC36-44CD-BCF2-9EEF6356E196}
{6D3A5A2F-E594-488B-BB4E-93FA0EFBA1E6} = {89374A4A-2B3C-4FEF-9847-BE0FF2A02A93}
{BCBB6BD4-90CD-452E-81AA-C54B7F941053} = {89374A4A-2B3C-4FEF-9847-BE0FF2A02A93}
{685E146A-1541-4CFE-9FAB-4F627979965E} = {89374A4A-2B3C-4FEF-9847-BE0FF2A02A93}
{E6045048-621C-476F-AC23-9A82AFD56FE3} = {89374A4A-2B3C-4FEF-9847-BE0FF2A02A93}
{455A52DA-0242-48CA-AFB1-9566F1E0513A} = {89374A4A-2B3C-4FEF-9847-BE0FF2A02A93}
{E9F6BF3E-3BD3-43F6-B4F1-4C84A0CEB340} = {89374A4A-2B3C-4FEF-9847-BE0FF2A02A93}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {79CD25F7-0592-4CA1-B05A-260CDEB9BAF6}

Просмотреть файл

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" DefaultTargets="Build;Package" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(SolutionDir)\Test.Common.props" />
<PropertyGroup>
@ -41,15 +41,6 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.AI.ServerTelemetryChannel">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\..\..\..\..\packages\Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.12.0-beta1\lib\net45\Microsoft.AI.ServerTelemetryChannel.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Microsoft.ApplicationInsights">
<HintPath>..\..\..\..\..\..\..\packages\Microsoft.ApplicationInsights.2.12.0-beta1\lib\net45\Microsoft.ApplicationInsights.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Microsoft.CSharp" />
<Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework" />
<Reference Include="Newtonsoft.Json">
@ -147,6 +138,28 @@
<ItemGroup>
<Folder Include="App_Data\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\..\..\..\BASE\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj">
<Project>{6d3a5a2f-e594-488b-bb4e-93fa0efba1e6}</Project>
<Name>Microsoft.ApplicationInsights</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\..\BASE\src\ServerTelemetryChannel\TelemetryChannel.csproj">
<Project>{bcbb6bd4-90cd-452e-81aa-c54b7f941053}</Project>
<Name>TelemetryChannel</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\Src\PerformanceCollector\PerformanceCollector\Perf.csproj">
<Project>{685e146a-1541-4cfe-9fab-4f627979965e}</Project>
<Name>Perf</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\Src\Web\Web\Web.csproj">
<Project>{e6045048-621c-476f-ac23-9a82afd56fe3}</Project>
<Name>Web</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\Src\WindowsServer\WindowsServer\WindowsServer.csproj">
<Project>{455a52da-0242-48ca-afb1-9566f1e0513a}</Project>
<Name>WindowsServer</Name>
</ProjectReference>
</ItemGroup>
<PropertyGroup>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
@ -187,4 +200,4 @@
copy "$(TargetDir)" "$(ProjectDir)bin"
</PostBuildEvent>
</PropertyGroup>
</Project>
</Project>

Просмотреть файл

@ -1,7 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Microsoft.ApplicationInsights" version="2.12.0-beta1" targetFramework="net451" />
<package id="Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel" version="2.12.0-beta1" targetFramework="net451" />
<package id="Microsoft.AspNet.WebApi" version="5.1.2" targetFramework="net45" />
<package id="Microsoft.AspNet.WebApi.Client" version="5.1.2" targetFramework="net45" />
<package id="Microsoft.AspNet.WebApi.Core" version="5.1.2" targetFramework="net45" />

Просмотреть файл

@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.26228.9
# Visual Studio Version 16
VisualStudioVersion = 16.0.29503.13
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "TestApplications", "TestApplications", "{B439008F-8E36-41F4-AF58-A4197C7D2D81}"
EndProject
@ -12,7 +12,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Functional", "FunctionalTes
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Mvc4_MediumTrust", "FunctionalTests\TestApps\Mvc4_MediumTrust\Mvc4_MediumTrust.csproj", "{C459F80F-D4CC-415C-B85B-8A20DCF37498}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Aspx45", "FunctionalTests\TestApps\Aspx45\Aspx45.csproj", "{89ED26D7-425B-4EE1-B53D-D2B7A1E971DF}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Aspx45", "FunctionalTests\TestApps\Aspx45\Aspx45.csproj", "{89ED26D7-425B-4EE1-B53D-D20000000000}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Wa45Aspx", "FunctionalTests\TestApps\Wa45Aspx\Wa45Aspx.csproj", "{94F62856-1467-4158-A31E-7D94B348882C}"
EndProject
@ -28,6 +28,20 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConsoleAppFW45", "Functiona
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ApplicationInsightsTypes", "..\ApplicationInsightsTypes\ApplicationInsightsTypes.csproj", "{4B0BC3B7-C7FC-4333-9E28-5790D9153F07}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".DependentProjects", ".DependentProjects", "{71B8388F-6131-47A6-848F-FE3DD3E42928}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.ApplicationInsights", "..\..\..\BASE\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj", "{3A5BE8FF-4571-48C0-BF28-5DBCB509900E}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TelemetryChannel", "..\..\..\BASE\src\ServerTelemetryChannel\TelemetryChannel.csproj", "{4D3AED61-D670-4817-AFFD-91ECBE03FFF2}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Web", "..\..\Src\Web\Web\Web.csproj", "{00E2F973-3BE4-4AE5-B3E9-21F97C45E5E7}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WindowsServer", "..\..\Src\WindowsServer\WindowsServer\WindowsServer.csproj", "{634A3177-56B4-44B1-9C81-32BA3959EAA5}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Perf", "..\..\Src\PerformanceCollector\PerformanceCollector\Perf.csproj", "{A73A7554-A7AF-451D-B611-2F98A6259D79}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DependencyCollector", "..\..\Src\DependencyCollector\DependencyCollector\DependencyCollector.csproj", "{5171849E-F678-4BB1-B3CA-9754E9D94821}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@ -52,14 +66,14 @@ Global
{C459F80F-D4CC-415C-B85B-8A20DCF37498}.Release|Any CPU.Build.0 = Release|Any CPU
{C459F80F-D4CC-415C-B85B-8A20DCF37498}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{C459F80F-D4CC-415C-B85B-8A20DCF37498}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{89ED26D7-425B-4EE1-B53D-D2B7A1E971DF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{89ED26D7-425B-4EE1-B53D-D2B7A1E971DF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{89ED26D7-425B-4EE1-B53D-D2B7A1E971DF}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{89ED26D7-425B-4EE1-B53D-D2B7A1E971DF}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{89ED26D7-425B-4EE1-B53D-D2B7A1E971DF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{89ED26D7-425B-4EE1-B53D-D2B7A1E971DF}.Release|Any CPU.Build.0 = Release|Any CPU
{89ED26D7-425B-4EE1-B53D-D2B7A1E971DF}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{89ED26D7-425B-4EE1-B53D-D2B7A1E971DF}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{89ED26D7-425B-4EE1-B53D-D20000000000}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{89ED26D7-425B-4EE1-B53D-D20000000000}.Debug|Any CPU.Build.0 = Debug|Any CPU
{89ED26D7-425B-4EE1-B53D-D20000000000}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{89ED26D7-425B-4EE1-B53D-D20000000000}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{89ED26D7-425B-4EE1-B53D-D20000000000}.Release|Any CPU.ActiveCfg = Release|Any CPU
{89ED26D7-425B-4EE1-B53D-D20000000000}.Release|Any CPU.Build.0 = Release|Any CPU
{89ED26D7-425B-4EE1-B53D-D20000000000}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{89ED26D7-425B-4EE1-B53D-D20000000000}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{94F62856-1467-4158-A31E-7D94B348882C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{94F62856-1467-4158-A31E-7D94B348882C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{94F62856-1467-4158-A31E-7D94B348882C}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
@ -116,19 +130,73 @@ Global
{4B0BC3B7-C7FC-4333-9E28-5790D9153F07}.Release|Any CPU.Build.0 = Release|Any CPU
{4B0BC3B7-C7FC-4333-9E28-5790D9153F07}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{4B0BC3B7-C7FC-4333-9E28-5790D9153F07}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{3A5BE8FF-4571-48C0-BF28-5DBCB509900E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3A5BE8FF-4571-48C0-BF28-5DBCB509900E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3A5BE8FF-4571-48C0-BF28-5DBCB509900E}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{3A5BE8FF-4571-48C0-BF28-5DBCB509900E}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{3A5BE8FF-4571-48C0-BF28-5DBCB509900E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3A5BE8FF-4571-48C0-BF28-5DBCB509900E}.Release|Any CPU.Build.0 = Release|Any CPU
{3A5BE8FF-4571-48C0-BF28-5DBCB509900E}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{3A5BE8FF-4571-48C0-BF28-5DBCB509900E}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{4D3AED61-D670-4817-AFFD-91ECBE03FFF2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4D3AED61-D670-4817-AFFD-91ECBE03FFF2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4D3AED61-D670-4817-AFFD-91ECBE03FFF2}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{4D3AED61-D670-4817-AFFD-91ECBE03FFF2}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{4D3AED61-D670-4817-AFFD-91ECBE03FFF2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4D3AED61-D670-4817-AFFD-91ECBE03FFF2}.Release|Any CPU.Build.0 = Release|Any CPU
{4D3AED61-D670-4817-AFFD-91ECBE03FFF2}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{4D3AED61-D670-4817-AFFD-91ECBE03FFF2}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{00E2F973-3BE4-4AE5-B3E9-21F97C45E5E7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{00E2F973-3BE4-4AE5-B3E9-21F97C45E5E7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{00E2F973-3BE4-4AE5-B3E9-21F97C45E5E7}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{00E2F973-3BE4-4AE5-B3E9-21F97C45E5E7}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{00E2F973-3BE4-4AE5-B3E9-21F97C45E5E7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{00E2F973-3BE4-4AE5-B3E9-21F97C45E5E7}.Release|Any CPU.Build.0 = Release|Any CPU
{00E2F973-3BE4-4AE5-B3E9-21F97C45E5E7}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{00E2F973-3BE4-4AE5-B3E9-21F97C45E5E7}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{634A3177-56B4-44B1-9C81-32BA3959EAA5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{634A3177-56B4-44B1-9C81-32BA3959EAA5}.Debug|Any CPU.Build.0 = Debug|Any CPU
{634A3177-56B4-44B1-9C81-32BA3959EAA5}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{634A3177-56B4-44B1-9C81-32BA3959EAA5}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{634A3177-56B4-44B1-9C81-32BA3959EAA5}.Release|Any CPU.ActiveCfg = Release|Any CPU
{634A3177-56B4-44B1-9C81-32BA3959EAA5}.Release|Any CPU.Build.0 = Release|Any CPU
{634A3177-56B4-44B1-9C81-32BA3959EAA5}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{634A3177-56B4-44B1-9C81-32BA3959EAA5}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{A73A7554-A7AF-451D-B611-2F98A6259D79}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A73A7554-A7AF-451D-B611-2F98A6259D79}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A73A7554-A7AF-451D-B611-2F98A6259D79}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{A73A7554-A7AF-451D-B611-2F98A6259D79}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{A73A7554-A7AF-451D-B611-2F98A6259D79}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A73A7554-A7AF-451D-B611-2F98A6259D79}.Release|Any CPU.Build.0 = Release|Any CPU
{A73A7554-A7AF-451D-B611-2F98A6259D79}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{A73A7554-A7AF-451D-B611-2F98A6259D79}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{5171849E-F678-4BB1-B3CA-9754E9D94821}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5171849E-F678-4BB1-B3CA-9754E9D94821}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5171849E-F678-4BB1-B3CA-9754E9D94821}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{5171849E-F678-4BB1-B3CA-9754E9D94821}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{5171849E-F678-4BB1-B3CA-9754E9D94821}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5171849E-F678-4BB1-B3CA-9754E9D94821}.Release|Any CPU.Build.0 = Release|Any CPU
{5171849E-F678-4BB1-B3CA-9754E9D94821}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{5171849E-F678-4BB1-B3CA-9754E9D94821}.Release|Mixed Platforms.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{C459F80F-D4CC-415C-B85B-8A20DCF37498} = {B439008F-8E36-41F4-AF58-A4197C7D2D81}
{89ED26D7-425B-4EE1-B53D-D2B7A1E971DF} = {B439008F-8E36-41F4-AF58-A4197C7D2D81}
{89ED26D7-425B-4EE1-B53D-D20000000000} = {B439008F-8E36-41F4-AF58-A4197C7D2D81}
{94F62856-1467-4158-A31E-7D94B348882C} = {B439008F-8E36-41F4-AF58-A4197C7D2D81}
{EBF4262A-0C95-4E70-9733-DAABD59AB786} = {B439008F-8E36-41F4-AF58-A4197C7D2D81}
{D237F415-C2EF-46BE-B14F-2C26E941AF80} = {B439008F-8E36-41F4-AF58-A4197C7D2D81}
{BD4C55CF-0513-4F93-936B-6EE57497ED84} = {B439008F-8E36-41F4-AF58-A4197C7D2D81}
{4E735DB0-178C-4719-9F5A-A04280739A3F} = {B439008F-8E36-41F4-AF58-A4197C7D2D81}
{B3284820-85BB-4273-B05F-D64FB175015A} = {B439008F-8E36-41F4-AF58-A4197C7D2D81}
{3A5BE8FF-4571-48C0-BF28-5DBCB509900E} = {71B8388F-6131-47A6-848F-FE3DD3E42928}
{4D3AED61-D670-4817-AFFD-91ECBE03FFF2} = {71B8388F-6131-47A6-848F-FE3DD3E42928}
{00E2F973-3BE4-4AE5-B3E9-21F97C45E5E7} = {71B8388F-6131-47A6-848F-FE3DD3E42928}
{634A3177-56B4-44B1-9C81-32BA3959EAA5} = {71B8388F-6131-47A6-848F-FE3DD3E42928}
{A73A7554-A7AF-451D-B611-2F98A6259D79} = {71B8388F-6131-47A6-848F-FE3DD3E42928}
{5171849E-F678-4BB1-B3CA-9754E9D94821} = {71B8388F-6131-47A6-848F-FE3DD3E42928}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {641403C1-6462-4AC0-8F1F-8921D5B4AF28}

Просмотреть файл

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" DefaultTargets="Build;Package" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(SolutionDir)\FunctionalTests\Test.Common.props" />
<PropertyGroup>
@ -39,13 +39,6 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.AI.ServerTelemetryChannel, Version=2.12.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\..\..\..\..\..\..\packages\Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.12.0-beta1\lib\net45\Microsoft.AI.ServerTelemetryChannel.dll</HintPath>
</Reference>
<Reference Include="Microsoft.ApplicationInsights, Version=2.12.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\..\..\..\..\..\..\packages\Microsoft.ApplicationInsights.2.12.0-beta1\lib\net45\Microsoft.ApplicationInsights.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Microsoft.AspNet.TelemetryCorrelation, Version=1.0.7.0, Culture=neutral, PublicKeyToken=f23a46de0be5d6f3, processorArchitecture=MSIL">
<HintPath>..\..\..\..\..\..\..\packages\Microsoft.AspNet.TelemetryCorrelation.1.0.7\lib\net45\Microsoft.AspNet.TelemetryCorrelation.dll</HintPath>
<Private>True</Private>
@ -365,6 +358,24 @@
<ItemGroup>
<Folder Include="App_Data\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\..\..\..\BASE\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj">
<Project>{3a5be8ff-4571-48c0-bf28-5dbcb509900e}</Project>
<Name>Microsoft.ApplicationInsights</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\..\BASE\src\ServerTelemetryChannel\TelemetryChannel.csproj">
<Project>{4d3aed61-d670-4817-affd-91ecbe03fff2}</Project>
<Name>TelemetryChannel</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\Src\Web\Web\Web.csproj">
<Project>{00e2f973-3be4-4ae5-b3e9-21f97c45e5e7}</Project>
<Name>Web</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\Src\WindowsServer\WindowsServer\WindowsServer.csproj">
<Project>{634a3177-56b4-44b1-9c81-32ba3959eaa5}</Project>
<Name>WindowsServer</Name>
</ProjectReference>
</ItemGroup>
<PropertyGroup>
<!--<DeployOnBuild>true</DeployOnBuild>-->
<DeployTarget>PipelinePreDeployCopyAllFilesToOneFolder</DeployTarget>
@ -405,4 +416,4 @@
</PropertyGroup>
<Import Project="$(SolutionDir)\FunctionalTests\Test.Common.Sdk.Net45.targets" />
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), 'Common.targets'))\Common.targets" />
</Project>
</Project>

Просмотреть файл

@ -6,8 +6,6 @@
<package id="bootstrap" version="3.0.0" targetFramework="net45" />
<package id="EntityFramework" version="6.1.0" targetFramework="net45" />
<package id="jQuery" version="1.10.2" targetFramework="net45" />
<package id="Microsoft.ApplicationInsights" version="2.12.0-beta1" targetFramework="net45" />
<package id="Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel" version="2.12.0-beta1" targetFramework="net45" />
<package id="Microsoft.AspNet.FriendlyUrls" version="1.0.2" targetFramework="net45" />
<package id="Microsoft.AspNet.FriendlyUrls.Core" version="1.0.2" targetFramework="net45" />
<package id="Microsoft.AspNet.Identity.Core" version="2.0.0" targetFramework="net45" />

Просмотреть файл

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" DefaultTargets="Build;Package" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(SolutionDir)\FunctionalTests\Test.Common.props" />
<PropertyGroup>
@ -43,13 +43,6 @@
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.AI.ServerTelemetryChannel, Version=2.12.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\..\..\..\..\..\..\packages\Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.12.0-beta1\lib\net45\Microsoft.AI.ServerTelemetryChannel.dll</HintPath>
</Reference>
<Reference Include="Microsoft.ApplicationInsights, Version=2.12.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\..\..\..\..\..\..\packages\Microsoft.ApplicationInsights.2.12.0-beta1\lib\net45\Microsoft.ApplicationInsights.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Microsoft.AspNet.TelemetryCorrelation, Version=1.0.7.0, Culture=neutral, PublicKeyToken=f23a46de0be5d6f3, processorArchitecture=MSIL">
<HintPath>..\..\..\..\..\..\..\packages\Microsoft.AspNet.TelemetryCorrelation.1.0.7\lib\net45\Microsoft.AspNet.TelemetryCorrelation.dll</HintPath>
<Private>True</Private>
@ -355,6 +348,24 @@
<Content Include="Account\Web.config" />
<Content Include="Site.Master" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\..\..\..\BASE\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj">
<Project>{3a5be8ff-4571-48c0-bf28-5dbcb509900e}</Project>
<Name>Microsoft.ApplicationInsights</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\..\BASE\src\ServerTelemetryChannel\TelemetryChannel.csproj">
<Project>{4d3aed61-d670-4817-affd-91ecbe03fff2}</Project>
<Name>TelemetryChannel</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\Src\Web\Web\Web.csproj">
<Project>{00e2f973-3be4-4ae5-b3e9-21f97c45e5e7}</Project>
<Name>Web</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\Src\WindowsServer\WindowsServer\WindowsServer.csproj">
<Project>{634a3177-56b4-44b1-9c81-32ba3959eaa5}</Project>
<Name>WindowsServer</Name>
</ProjectReference>
</ItemGroup>
<PropertyGroup>
<!--<DeployOnBuild>true</DeployOnBuild>-->
<DeployTarget>PipelinePreDeployCopyAllFilesToOneFolder</DeployTarget>
@ -402,4 +413,4 @@
<Target Name="AfterBuild">
</Target>
-->
</Project>
</Project>

Просмотреть файл

@ -11,8 +11,6 @@
<package id="EntityFramework" version="6.1.0" targetFramework="net45" />
<package id="jQuery" version="1.8.2" targetFramework="net45" />
<package id="jQuery.UI.Combined" version="1.8.24" targetFramework="net45" />
<package id="Microsoft.ApplicationInsights" version="2.12.0-beta1" targetFramework="net45" />
<package id="Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel" version="2.12.0-beta1" targetFramework="net45" />
<package id="Microsoft.AspNet.FriendlyUrls" version="1.0.0" targetFramework="net45" />
<package id="Microsoft.AspNet.FriendlyUrls.Core" version="1.0.0" targetFramework="net45" />
<package id="Microsoft.AspNet.Membership.OpenAuth" version="1.0.2" targetFramework="net45" />

Просмотреть файл

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), 'Test.Common.props'))\Test.Common.props" />
<PropertyGroup>
@ -33,13 +33,6 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.AI.ServerTelemetryChannel, Version=2.12.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\..\..\..\..\..\..\packages\Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.12.0-beta1\lib\net45\Microsoft.AI.ServerTelemetryChannel.dll</HintPath>
</Reference>
<Reference Include="Microsoft.ApplicationInsights, Version=2.12.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\..\..\..\..\..\..\packages\Microsoft.ApplicationInsights.2.12.0-beta1\lib\net45\Microsoft.ApplicationInsights.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Microsoft.Diagnostics.Tracing.EventSource, Version=1.1.28.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\..\..\..\..\packages\Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.28\lib\net40\Microsoft.Diagnostics.Tracing.EventSource.dll</HintPath>
@ -84,6 +77,24 @@
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\..\..\..\BASE\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj">
<Project>{3a5be8ff-4571-48c0-bf28-5dbcb509900e}</Project>
<Name>Microsoft.ApplicationInsights</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\..\BASE\src\ServerTelemetryChannel\TelemetryChannel.csproj">
<Project>{4d3aed61-d670-4817-affd-91ecbe03fff2}</Project>
<Name>TelemetryChannel</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\Src\Web\Web\Web.csproj">
<Project>{00e2f973-3be4-4ae5-b3e9-21f97c45e5e7}</Project>
<Name>Web</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\Src\WindowsServer\WindowsServer\WindowsServer.csproj">
<Project>{634a3177-56b4-44b1-9c81-32ba3959eaa5}</Project>
<Name>WindowsServer</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="$(SolutionDir)\FunctionalTests\Test.Common.Sdk.Net45.targets" />
<PropertyGroup Condition="$(BuildingInsideVisualStudio)!=''">
@ -94,4 +105,4 @@
</PostBuildEvent>
</PropertyGroup>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), 'Common.targets'))\Common.targets" />
</Project>
</Project>

Просмотреть файл

@ -1,7 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Microsoft.ApplicationInsights" version="2.12.0-beta1" targetFramework="net45" />
<package id="Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel" version="2.12.0-beta1" targetFramework="net45" />
<package id="Microsoft.Diagnostics.Tracing.EventSource.Redist" version="1.1.28" targetFramework="net45" />
<package id="System.Buffers" version="4.4.0" targetFramework="net45" />
<package id="System.Diagnostics.DiagnosticSource" version="4.6.0" targetFramework="net45" />

Просмотреть файл

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" DefaultTargets="Build;Package" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(SolutionDir)\FunctionalTests\Test.Common.props" />
<PropertyGroup>
@ -57,15 +57,6 @@
<Reference Include="EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
<HintPath>..\..\..\..\..\..\..\packages\EntityFramework.6.1.0\lib\net45\EntityFramework.SqlServer.dll</HintPath>
</Reference>
<Reference Include="Microsoft.AI.ServerTelemetryChannel">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\..\..\..\..\packages\Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.12.0-beta1\lib\net45\Microsoft.AI.ServerTelemetryChannel.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Microsoft.ApplicationInsights">
<HintPath>..\..\..\..\..\..\..\packages\Microsoft.ApplicationInsights.2.12.0-beta1\lib\net45\Microsoft.ApplicationInsights.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Microsoft.AspNet.TelemetryCorrelation, Version=1.0.7.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\..\..\..\..\..\..\packages\Microsoft.AspNet.TelemetryCorrelation.1.0.7\lib\net45\Microsoft.AspNet.TelemetryCorrelation.dll</HintPath>
</Reference>
@ -363,6 +354,24 @@
<SubType>Designer</SubType>
</Content>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\..\..\..\BASE\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj">
<Project>{3a5be8ff-4571-48c0-bf28-5dbcb509900e}</Project>
<Name>Microsoft.ApplicationInsights</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\..\BASE\src\ServerTelemetryChannel\TelemetryChannel.csproj">
<Project>{4d3aed61-d670-4817-affd-91ecbe03fff2}</Project>
<Name>TelemetryChannel</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\Src\Web\Web\Web.csproj">
<Project>{00e2f973-3be4-4ae5-b3e9-21f97c45e5e7}</Project>
<Name>Web</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\Src\WindowsServer\WindowsServer\WindowsServer.csproj">
<Project>{634a3177-56b4-44b1-9c81-32ba3959eaa5}</Project>
<Name>WindowsServer</Name>
</ProjectReference>
</ItemGroup>
<PropertyGroup>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
@ -406,4 +415,4 @@
</PostBuildEvent>
</PropertyGroup>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), 'Common.targets'))\Common.targets" />
</Project>
</Project>

Просмотреть файл

@ -11,8 +11,6 @@
<package id="jQuery.UI.Combined" version="1.8.24" targetFramework="net45" />
<package id="jQuery.Validation" version="1.10.0" targetFramework="net45" />
<package id="knockoutjs" version="2.2.0" targetFramework="net45" />
<package id="Microsoft.ApplicationInsights" version="2.12.0-beta1" targetFramework="net45" />
<package id="Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel" version="2.12.0-beta1" targetFramework="net45" />
<package id="Microsoft.AspNet.Mvc" version="4.0.30506.0" targetFramework="net45" />
<package id="Microsoft.AspNet.Mvc.FixedDisplayModes" version="1.0.0" targetFramework="net45" />
<package id="Microsoft.AspNet.Razor" version="2.0.30506.0" targetFramework="net45" />

Просмотреть файл

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" DefaultTargets="Build;Package" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(SolutionDir)\FunctionalTests\Test.Common.props" />
<PropertyGroup>
@ -48,13 +48,6 @@
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.AI.ServerTelemetryChannel, Version=2.12.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\..\..\..\..\..\..\packages\Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.12.0-beta1\lib\net45\Microsoft.AI.ServerTelemetryChannel.dll</HintPath>
</Reference>
<Reference Include="Microsoft.ApplicationInsights, Version=2.12.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\..\..\..\..\..\..\packages\Microsoft.ApplicationInsights.2.12.0-beta1\lib\net45\Microsoft.ApplicationInsights.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Microsoft.AspNet.TelemetryCorrelation, Version=1.0.7.0, Culture=neutral, PublicKeyToken=f23a46de0be5d6f3, processorArchitecture=MSIL">
<HintPath>..\..\..\..\..\..\..\packages\Microsoft.AspNet.TelemetryCorrelation.1.0.7\lib\net45\Microsoft.AspNet.TelemetryCorrelation.dll</HintPath>
<Private>True</Private>
@ -192,6 +185,24 @@
<DependentUpon>web.config</DependentUpon>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\..\..\..\BASE\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj">
<Project>{3a5be8ff-4571-48c0-bf28-5dbcb509900e}</Project>
<Name>Microsoft.ApplicationInsights</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\..\BASE\src\ServerTelemetryChannel\TelemetryChannel.csproj">
<Project>{4d3aed61-d670-4817-affd-91ecbe03fff2}</Project>
<Name>TelemetryChannel</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\Src\Web\Web\Web.csproj">
<Project>{00e2f973-3be4-4ae5-b3e9-21f97c45e5e7}</Project>
<Name>Web</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\Src\WindowsServer\WindowsServer\WindowsServer.csproj">
<Project>{634a3177-56b4-44b1-9c81-32ba3959eaa5}</Project>
<Name>WindowsServer</Name>
</ProjectReference>
</ItemGroup>
<PropertyGroup>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
@ -217,4 +228,4 @@
</PostBuildEvent>
</PropertyGroup>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), 'Common.targets'))\Common.targets" />
</Project>
</Project>

Просмотреть файл

@ -1,7 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Microsoft.ApplicationInsights" version="2.12.0-beta1" targetFramework="net45" />
<package id="Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel" version="2.12.0-beta1" targetFramework="net45" />
<package id="Microsoft.AspNet.TelemetryCorrelation" version="1.0.7" targetFramework="net45" />
<package id="Microsoft.Diagnostics.Tracing.EventSource.Redist" version="1.1.28" targetFramework="net45" />
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net45" />

Просмотреть файл

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" DefaultTargets="Build;Package" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(SolutionDir)\FunctionalTests\Test.Common.props" />
<PropertyGroup>
@ -49,13 +49,6 @@
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.AI.ServerTelemetryChannel, Version=2.12.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\..\..\..\..\..\..\packages\Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.12.0-beta1\lib\net45\Microsoft.AI.ServerTelemetryChannel.dll</HintPath>
</Reference>
<Reference Include="Microsoft.ApplicationInsights, Version=2.12.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\..\..\..\..\..\..\packages\Microsoft.ApplicationInsights.2.12.0-beta1\lib\net45\Microsoft.ApplicationInsights.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Microsoft.AspNet.TelemetryCorrelation, Version=1.0.7.0, Culture=neutral, PublicKeyToken=f23a46de0be5d6f3, processorArchitecture=MSIL">
<HintPath>..\..\..\..\..\..\..\packages\Microsoft.AspNet.TelemetryCorrelation.1.0.7\lib\net45\Microsoft.AspNet.TelemetryCorrelation.dll</HintPath>
<Private>True</Private>
@ -128,6 +121,24 @@
<DependentUpon>Web.config</DependentUpon>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\..\..\..\BASE\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj">
<Project>{3a5be8ff-4571-48c0-bf28-5dbcb509900e}</Project>
<Name>Microsoft.ApplicationInsights</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\..\BASE\src\ServerTelemetryChannel\TelemetryChannel.csproj">
<Project>{4d3aed61-d670-4817-affd-91ecbe03fff2}</Project>
<Name>TelemetryChannel</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\Src\Web\Web\Web.csproj">
<Project>{00e2f973-3be4-4ae5-b3e9-21f97c45e5e7}</Project>
<Name>Web</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\Src\WindowsServer\WindowsServer\WindowsServer.csproj">
<Project>{634a3177-56b4-44b1-9c81-32ba3959eaa5}</Project>
<Name>WindowsServer</Name>
</ProjectReference>
</ItemGroup>
<PropertyGroup>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
@ -148,4 +159,4 @@
</ProjectExtensions>
<Import Project="$(SolutionDir)\FunctionalTests\Test.Common.Sdk.Net45.targets" />
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), 'Common.targets'))\Common.targets" />
</Project>
</Project>

Просмотреть файл

@ -1,7 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Microsoft.ApplicationInsights" version="2.12.0-beta1" targetFramework="net45" />
<package id="Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel" version="2.12.0-beta1" targetFramework="net45" />
<package id="Microsoft.AspNet.TelemetryCorrelation" version="1.0.7" targetFramework="net45" />
<package id="Microsoft.Diagnostics.Tracing.EventSource.Redist" version="1.1.28" targetFramework="net45" />
<package id="System.Buffers" version="4.4.0" targetFramework="net45" />

Просмотреть файл

@ -52,13 +52,16 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.AI.ServerTelemetryChannel, Version=2.12.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\..\..\..\..\..\..\packages\Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.12.0-beta1\lib\net45\Microsoft.AI.ServerTelemetryChannel.dll</HintPath>
</Reference>
<Reference Include="Microsoft.ApplicationInsights, Version=2.12.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\..\..\..\..\..\..\packages\Microsoft.ApplicationInsights.2.12.0-beta1\lib\net45\Microsoft.ApplicationInsights.dll</HintPath>
<Private>True</Private>
</Reference>
<ProjectReference Include="..\..\..\..\..\..\BASE\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj">
<Project>{3a5be8ff-4571-48c0-bf28-5dbcb509900e}</Project>
<Name>Microsoft.ApplicationInsights</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\..\BASE\src\ServerTelemetryChannel\TelemetryChannel.csproj">
<Project>{4d3aed61-d670-4817-affd-91ecbe03fff2}</Project>
<Name>TelemetryChannel</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Reference Include="Microsoft.AspNet.TelemetryCorrelation, Version=1.0.7.0, Culture=neutral, PublicKeyToken=f23a46de0be5d6f3, processorArchitecture=MSIL">
<HintPath>..\..\..\..\..\..\..\packages\Microsoft.AspNet.TelemetryCorrelation.1.0.7\lib\net45\Microsoft.AspNet.TelemetryCorrelation.dll</HintPath>
</Reference>

Просмотреть файл

@ -1,7 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Microsoft.ApplicationInsights" version="2.12.0-beta1" targetFramework="net451" />
<package id="Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel" version="2.12.0-beta1" targetFramework="net451" />
<package id="Microsoft.AspNet.TelemetryCorrelation" version="1.0.7" targetFramework="net451" />
<package id="Microsoft.AspNet.WebApi" version="5.1.2" targetFramework="net45" />
<package id="Microsoft.AspNet.WebApi.Client" version="5.1.2" targetFramework="net45" />

Просмотреть файл

@ -52,13 +52,16 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.AI.ServerTelemetryChannel, Version=2.12.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\..\..\..\..\..\..\packages\Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.12.0-beta1\lib\net45\Microsoft.AI.ServerTelemetryChannel.dll</HintPath>
</Reference>
<Reference Include="Microsoft.ApplicationInsights, Version=2.12.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\..\..\..\..\..\..\packages\Microsoft.ApplicationInsights.2.12.0-beta1\lib\net45\Microsoft.ApplicationInsights.dll</HintPath>
<Private>True</Private>
</Reference>
<ProjectReference Include="..\..\..\..\..\..\BASE\src\Microsoft.ApplicationInsights\Microsoft.ApplicationInsights.csproj">
<Project>{3a5be8ff-4571-48c0-bf28-5dbcb509900e}</Project>
<Name>Microsoft.ApplicationInsights</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\..\BASE\src\ServerTelemetryChannel\TelemetryChannel.csproj">
<Project>{4d3aed61-d670-4817-affd-91ecbe03fff2}</Project>
<Name>TelemetryChannel</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Reference Include="Microsoft.AspNet.TelemetryCorrelation, Version=1.0.7.0, Culture=neutral, PublicKeyToken=f23a46de0be5d6f3, processorArchitecture=MSIL">
<HintPath>..\..\..\..\..\..\..\packages\Microsoft.AspNet.TelemetryCorrelation.1.0.7\lib\net45\Microsoft.AspNet.TelemetryCorrelation.dll</HintPath>
</Reference>

Просмотреть файл

@ -1,7 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Microsoft.ApplicationInsights" version="2.12.0-beta1" targetFramework="net451" />
<package id="Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel" version="2.12.0-beta1" targetFramework="net451" />
<package id="Microsoft.AspNet.TelemetryCorrelation" version="1.0.7" targetFramework="net451" />
<package id="Microsoft.AspNet.WebApi" version="5.1.2" targetFramework="net45" />
<package id="Microsoft.AspNet.WebApi.Client" version="5.1.2" targetFramework="net45" />