Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit da4f975

Browse files
committed
AssemblyVersionInformation -> ExtensionInformation
1 parent f9e1478 commit da4f975

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/GitHub.Exports/Settings/ExtensionInformation.cs renamed to src/GitHub.Exports/ExtensionInformation.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
namespace GitHub.Settings
1+
namespace GitHub
22
{
3-
public static class AssemblyVersionInformation
3+
public static class ExtensionInformation
44
{
55
// HACK: For some reason ThisAssembly.AssemblyFileVersion can't be referenced
66
// directly from inside GitHub.VisualStudio.

src/GitHub.VisualStudio/Services/VisualStudioUsageTracker.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ void LogTelemetryEvent(string counterName)
4949
var operation = new TelemetryEvent(Event.UsageTracker);
5050
operation.Properties[Property.TelemetryVersion] = TelemetryVersion;
5151
operation.Properties[Property.CounterName] = counterName;
52-
operation.Properties[Property.ExtensionVersion] = AssemblyVersionInformation.Version;
52+
operation.Properties[Property.ExtensionVersion] = ExtensionInformation.Version;
5353
operation.Properties[Property.IsGitHubUser] = IsGitHubUser;
5454
operation.Properties[Property.IsEnterpriseUser] = IsEnterpriseUser;
5555

0 commit comments

Comments
 (0)