From 7cfad68508670563e310dc5250bc99cd64ddc478 Mon Sep 17 00:00:00 2001 From: michaelkirschner Date: Sun, 13 Dec 2020 00:48:09 -0500 Subject: [PATCH] first commit - it works --- TuneUp/ProfiledNodeViewModel.cs | 14 ++++++++++++++ TuneUp/TuneUp.csproj | 2 +- TuneUp/TuneUpWindow.xaml | 25 +++++++++++++++++++++++++ TuneUp/TuneUpWindow.xaml.cs | 20 ++++++++++++++++++++ TuneUp/TuneUpWindowViewModel.cs | 15 +++++++++++++++ 5 files changed, 75 insertions(+), 1 deletion(-) 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 +