Skip to content

Commit

Permalink
Added initial event
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanKert committed Apr 27, 2019
1 parent d1eb541 commit 63b4efb
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/BuildVision/Core/BuildVisionPane.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
using System.Windows;
using System.Windows.Controls;
using System.Windows.Markup;
using BuildVision.Common.Diagnostics;
using BuildVision.Core;
using BuildVision.Exports.Providers;
using BuildVision.Exports.Services;
Expand Down Expand Up @@ -97,10 +98,14 @@ async Task<BuildVisionPaneViewModel> InitializeAsync(AsyncPackage asyncPackage)
View.DataContext = viewModel;
viewModel.ShowOptionPage += ViewModel_ShowOptionPage;
_controlCreatedSuccessfully = true;

DiagnosticsClient.TrackEvent("BuildVisionStarted");

return viewModel;
}
catch (Exception e)
{
DiagnosticsClient.TrackException(e);
ShowError(e);
throw;
}
Expand Down

0 comments on commit 63b4efb

Please sign in to comment.