From 5a9894b02adeeac303b35fb9483dbc570be010d9 Mon Sep 17 00:00:00 2001 From: Tim Deschryver <28659384+timdeschryver@users.noreply.github.com> Date: Thu, 2 May 2024 19:58:22 +0200 Subject: [PATCH 1/4] add datapoints introduced in 8.0.100 --- docs/core/tools/telemetry.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/docs/core/tools/telemetry.md b/docs/core/tools/telemetry.md index e123a607d0575..beec8ad7b04e6 100644 --- a/docs/core/tools/telemetry.md +++ b/docs/core/tools/telemetry.md @@ -76,7 +76,7 @@ The telemetry feature collects the following data: | >=5.0.100 | Hashed RuntimeIdentifier used for build (MSBuild property) | | >=5.0.100 | Hashed SelfContained used for build (MSBuild property) | | >=5.0.100 | Hashed UseApphost used for build (MSBuild property) | -| >=5.0.100 | Hashed OutputType used for build (MSBuild property | +| >=5.0.100 | Hashed OutputType used for build (MSBuild property | | >=5.0.201 | Hashed PublishReadyToRun used for build (MSBuild property) | | >=5.0.201 | Hashed PublishTrimmed used for build (MSBuild property) | | >=5.0.201 | Hashed PublishSingleFile used for build (MSBuild property) | @@ -93,6 +93,20 @@ The telemetry feature collects the following data: | >=6.0.300 | If the CLI was invoked from a Continuous Integration environment. For more information, see [Continuous Integration Detection](#continuous-integration-detection).| | >=7.0.100 | Hashed PublishAot used for build (MSBuild property) | | >=7.0.100 | Hashed PublishProtocol used for build (MSBuild property) | +| >=8.0.100 | Hashed TargetPlatformIdentifier used for build (MSBuild property) | +| >=8.0.100 | Hashed RuntimeIdentifier used for build (MSBuild property) | +| >=8.0.100 | Hashed BlazorWasm used for build (MSBuild property) | +| >=8.0.100 | Hashed WasmSDK used for build (MSBuild property) | +| >=8.0.100 | Hashed UsesMaui used for build (MSBuild property) | +| >=8.0.100 | Hashed UsesMobileSDKOnly used for build (MSBuild property) | +| >=8.0.100 | Hashed UsesOtherMobileSDK used for build (MSBuild property) | +| >=8.0.100 | Hashed MonoAOT used for build (MSBuild property) | +| >=8.0.100 | Hashed NativeAOT used for build (MSBuild property) | +| >=8.0.100 | Hashed Interp used for build (MSBuild property) | +| >=8.0.100 | Hashed LibraryMode used for build (MSBuild property)| +| >=8.0.100 | Hashed HybridGlobalization used for build (MSBuild property) | +| >=8.0.100 | Hashed ResolvedRuntimePack used for build (MSBuild property) | +| >=8.0.100 | Hashed StripILAfterAOT used for build (MSBuild property) | ### Collected options From e61ff01355a48a8695f6de4d3d99afca11cd2b68 Mon Sep 17 00:00:00 2001 From: Tim Deschryver <28659384+timdeschryver@users.noreply.github.com> Date: Fri, 3 May 2024 19:45:52 +0200 Subject: [PATCH 2/4] add missing closing bracket --- docs/core/tools/telemetry.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/core/tools/telemetry.md b/docs/core/tools/telemetry.md index beec8ad7b04e6..96ec9c343c214 100644 --- a/docs/core/tools/telemetry.md +++ b/docs/core/tools/telemetry.md @@ -76,7 +76,7 @@ The telemetry feature collects the following data: | >=5.0.100 | Hashed RuntimeIdentifier used for build (MSBuild property) | | >=5.0.100 | Hashed SelfContained used for build (MSBuild property) | | >=5.0.100 | Hashed UseApphost used for build (MSBuild property) | -| >=5.0.100 | Hashed OutputType used for build (MSBuild property | +| >=5.0.100 | Hashed OutputType used for build (MSBuild property) | | >=5.0.201 | Hashed PublishReadyToRun used for build (MSBuild property) | | >=5.0.201 | Hashed PublishTrimmed used for build (MSBuild property) | | >=5.0.201 | Hashed PublishSingleFile used for build (MSBuild property) | From 0b43ccf9258b99a9bfc0a057e7ef3b037185ef3e Mon Sep 17 00:00:00 2001 From: Tim Deschryver <28659384+timdeschryver@users.noreply.github.com> Date: Mon, 6 May 2024 19:01:28 +0200 Subject: [PATCH 3/4] remove duplicate datapoint --- docs/core/tools/telemetry.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/core/tools/telemetry.md b/docs/core/tools/telemetry.md index 96ec9c343c214..02edc7425f3e3 100644 --- a/docs/core/tools/telemetry.md +++ b/docs/core/tools/telemetry.md @@ -94,7 +94,6 @@ The telemetry feature collects the following data: | >=7.0.100 | Hashed PublishAot used for build (MSBuild property) | | >=7.0.100 | Hashed PublishProtocol used for build (MSBuild property) | | >=8.0.100 | Hashed TargetPlatformIdentifier used for build (MSBuild property) | -| >=8.0.100 | Hashed RuntimeIdentifier used for build (MSBuild property) | | >=8.0.100 | Hashed BlazorWasm used for build (MSBuild property) | | >=8.0.100 | Hashed WasmSDK used for build (MSBuild property) | | >=8.0.100 | Hashed UsesMaui used for build (MSBuild property) | From 917d9b650a7386dd342917afa453f46b9afe886c Mon Sep 17 00:00:00 2001 From: Tim Deschryver <28659384+timdeschryver@users.noreply.github.com> Date: Thu, 16 May 2024 20:01:15 +0200 Subject: [PATCH 4/4] Update docs/core/tools/telemetry.md Co-authored-by: Ivan Povazan <55002338+ivanpovazan@users.noreply.github.com> --- docs/core/tools/telemetry.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/docs/core/tools/telemetry.md b/docs/core/tools/telemetry.md index 02edc7425f3e3..b8b3fe9e1982c 100644 --- a/docs/core/tools/telemetry.md +++ b/docs/core/tools/telemetry.md @@ -94,18 +94,18 @@ The telemetry feature collects the following data: | >=7.0.100 | Hashed PublishAot used for build (MSBuild property) | | >=7.0.100 | Hashed PublishProtocol used for build (MSBuild property) | | >=8.0.100 | Hashed TargetPlatformIdentifier used for build (MSBuild property) | -| >=8.0.100 | Hashed BlazorWasm used for build (MSBuild property) | -| >=8.0.100 | Hashed WasmSDK used for build (MSBuild property) | -| >=8.0.100 | Hashed UsesMaui used for build (MSBuild property) | -| >=8.0.100 | Hashed UsesMobileSDKOnly used for build (MSBuild property) | -| >=8.0.100 | Hashed UsesOtherMobileSDK used for build (MSBuild property) | -| >=8.0.100 | Hashed MonoAOT used for build (MSBuild property) | -| >=8.0.100 | Hashed NativeAOT used for build (MSBuild property) | -| >=8.0.100 | Hashed Interp used for build (MSBuild property) | -| >=8.0.100 | Hashed LibraryMode used for build (MSBuild property)| | >=8.0.100 | Hashed HybridGlobalization used for build (MSBuild property) | -| >=8.0.100 | Hashed ResolvedRuntimePack used for build (MSBuild property) | -| >=8.0.100 | Hashed StripILAfterAOT used for build (MSBuild property) | +| >=8.0.100 | Whether .NET Blazor WebAssembly SDK is used. | +| >=8.0.100 | Whether .NET WebAssembly SDK is used. | +| >=8.0.100 | Whether .NET MAUI is used. | +| >=8.0.100 | Whether .NET mobile SDK is used. | +| >=8.0.100 | Whether other mobile SDKs are used (like: Avalonia, Uno). | +| >=8.0.100 | Whether Mono AOT is used. | +| >=8.0.100 | Whether Mono AOT strip IL feature is used. | +| >=8.0.100 | Whether Mono interpreter is used. | +| >=8.0.100 | Whether library mode for mobile is used. | +| >=8.0.100 | Whether NativeAOT is used. | +| >=8.0.100 | Used Mono runtime pack version. | ### Collected options