Move telemetry dependency out of Utils and into dotnet
This commit is contained in:
parent
b530369e8b
commit
3045ce37fc
4 changed files with 4 additions and 3 deletions
|
@ -5,7 +5,6 @@
|
||||||
"warningsAsErrors": true
|
"warningsAsErrors": true
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.ApplicationInsights": "2.0.0-rc1",
|
|
||||||
"Microsoft.DotNet.ProjectModel": "1.0.0-*",
|
"Microsoft.DotNet.ProjectModel": "1.0.0-*",
|
||||||
"Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-20100",
|
"Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-20100",
|
||||||
"NuGet.Versioning": "3.5.0-beta-1130",
|
"NuGet.Versioning": "3.5.0-beta-1130",
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Microsoft.DotNet.Cli.Utils
|
namespace Microsoft.DotNet.Cli
|
||||||
{
|
{
|
||||||
public interface ITelemetry
|
public interface ITelemetry
|
||||||
{
|
{
|
|
@ -1,10 +1,11 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using Microsoft.ApplicationInsights;
|
using Microsoft.ApplicationInsights;
|
||||||
|
using Microsoft.DotNet.Cli.Utils;
|
||||||
using Microsoft.Extensions.PlatformAbstractions;
|
using Microsoft.Extensions.PlatformAbstractions;
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
|
|
||||||
namespace Microsoft.DotNet.Cli.Utils
|
namespace Microsoft.DotNet.Cli
|
||||||
{
|
{
|
||||||
public class Telemetry : ITelemetry
|
public class Telemetry : ITelemetry
|
||||||
{
|
{
|
|
@ -25,6 +25,7 @@
|
||||||
"System.Text.Encoding.CodePages": "4.0.1-rc2-23931",
|
"System.Text.Encoding.CodePages": "4.0.1-rc2-23931",
|
||||||
"System.Diagnostics.FileVersionInfo": "4.0.0-rc2-23931",
|
"System.Diagnostics.FileVersionInfo": "4.0.0-rc2-23931",
|
||||||
"System.CommandLine": "0.1.0-e160323-1",
|
"System.CommandLine": "0.1.0-e160323-1",
|
||||||
|
"Microsoft.ApplicationInsights": "2.0.0",
|
||||||
"Microsoft.DotNet.ProjectModel": "1.0.0-*",
|
"Microsoft.DotNet.ProjectModel": "1.0.0-*",
|
||||||
"Microsoft.DotNet.Compiler.Common": "1.0.0-*",
|
"Microsoft.DotNet.Compiler.Common": "1.0.0-*",
|
||||||
"Microsoft.DotNet.Cli.Utils": "1.0.0-*",
|
"Microsoft.DotNet.Cli.Utils": "1.0.0-*",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue