diff --git a/TuneUp/ProfiledNodeViewModel.cs b/TuneUp/ProfiledNodeViewModel.cs index 8c52c92..a5c00bd 100644 --- a/TuneUp/ProfiledNodeViewModel.cs +++ b/TuneUp/ProfiledNodeViewModel.cs @@ -130,6 +130,20 @@ public string StateDescription } } + private string callsiteData; + /// + /// A string representing the serialized trace data contained in this callsite. + /// + public string CallSiteData + { + get { return callsiteData; } + set + { + callsiteData = value; + RaisePropertyChanged(nameof(CallSiteData)); + } + } + internal NodeModel NodeModel { get; set; } #endregion diff --git a/TuneUp/TuneUp.csproj b/TuneUp/TuneUp.csproj index fcd97bc..dc5f950 100644 --- a/TuneUp/TuneUp.csproj +++ b/TuneUp/TuneUp.csproj @@ -93,7 +93,7 @@ --> - 2.5 + 2.11 TuneUp $(ProjectDir)dist\$(PackageName)\ $(PackageFolder)bin\ diff --git a/TuneUp/TuneUpWindow.xaml b/TuneUp/TuneUpWindow.xaml index 3316f72..4a46595 100644 --- a/TuneUp/TuneUpWindow.xaml +++ b/TuneUp/TuneUpWindow.xaml @@ -98,6 +98,15 @@ Padding="5,2,5,2"> Force Re-execute +